using System.Collections.Generic; namespace Luticate2.Utils.Dbo { public class LuPaginatedDbo<TDbo> : LuDbo { public long Count { get; set; } public List<TDbo> Data { get; set; } } }