PIbd-32_Artamonova_T.V._COP_2/UniversityContracts/SearchModels/StudentSearchModel.cs

12 lines
317 B
C#

namespace UniversityContracts.SearchModels
{
public class StudentSearchModel
{
public int Id { get; set; }
public string FIO { get; set; }
public string Email { get; set; }
public string PhotoFilePath { get; set; }
public string DirectionName { get; set; }
}
}