using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace LMS.Repository.DTO { public class CollectionResponse { public int Current { get; set; } public int Total { get; set; } public List Collection { get; set; } = new List(); } }