19 lines
481 B
C#
Raw Normal View History

2023-04-08 13:59:34 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace UniversityContracts.SearchModels
{
public class EducationGroupSearchModel
{
public int? Id { get; set; }
public string? Name { get; set; }
public int? UserId { get; set; }
public int? NumberOfStudents { get; set; }
2023-05-19 21:25:56 +04:00
public int? PageNumber { get; set; }
public int? PageSize { get; set; }
2023-04-08 13:59:34 +04:00
}
}