LMS.service/LMS.Repository/DTO/CollectionResponse.cs

20 lines
353 B
C#
Raw Permalink Normal View History

2024-10-13 17:04:47 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LMS.Repository.DTO
{
public class CollectionResponse<T>
{
public int Current { get; set; }
public int Total { get; set; }
public List<T> Collection { get; set; } = new List<T>();
}
}