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