StudentQueryInput.cs 404 B

12345678910111213141516
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Threading.Tasks;
  5. namespace CasinosManager.Api.Dto
  6. {
  7. public class StudentQueryInput
  8. {
  9. public int Page { get; set; }
  10. public int PageSize { get; set; }
  11. public string Name { get; set; }
  12. public DateTime? CreateFrom { get; set; }
  13. public DateTime? CreateTo { get; set; }
  14. }
  15. }