namespace Umbraco.Cms.Core.Models; public class PagedModel { public PagedModel() { } public PagedModel(long total, IEnumerable items) { Total = total; Items = items; } public IEnumerable Items { get; init; } = Enumerable.Empty(); public long Total { get; init; } }