Files
Blueberry/Blueberry.Redmine/Dto/IResponseList.cs
2025-12-15 09:26:27 +01:00

10 lines
209 B
C#

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