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; }
}
}