namespace ZeroFramework.IdentityServer.API.Models.Generics { public class PagedResponseModel(IReadOnlyList items, int totalCount) { public IReadOnlyList Items { get; set; } = items; public int TotalCount { get; set; } = totalCount; } }