using System.Collections.Generic; namespace Blazor.App.Dtos { public class PagedResultDto where T : class { public int TotalCount { get; set; } public List Items { get; set; } } public class ListResultDto where T : class { public List Items { get; set; } } }