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