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