namespace Hotline.Share.Dtos { public record PagedDto { public int Total { get; set; } public IReadOnlyList Items { get; set; } public PagedDto() { } public PagedDto(int total, IReadOnlyList items) { Total = total; Items = items; } } }