namespace Blueberry.Redmine.Dto { public interface IResponseList { public int TotalCount { get; set; } public int Offset { get; set; } public int Limit { get; set; } } }