2023-10-28 09:06:35 +04:00
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
namespace UniversityDatabaseImplement.Models
|
|
|
|
|
{
|
2023-11-09 04:07:06 +04:00
|
|
|
|
public class Student
|
2023-10-28 09:06:35 +04:00
|
|
|
|
{
|
2023-11-09 04:07:06 +04:00
|
|
|
|
public int Id { get; set; }
|
2023-10-28 09:06:35 +04:00
|
|
|
|
[Required]
|
2023-11-09 04:07:06 +04:00
|
|
|
|
public string FIO { get; set; }
|
2023-10-28 09:06:35 +04:00
|
|
|
|
[Required]
|
2023-11-09 04:07:06 +04:00
|
|
|
|
public string Email { get; set; }
|
2023-10-28 09:06:35 +04:00
|
|
|
|
[Required]
|
2023-11-09 04:07:06 +04:00
|
|
|
|
public string PhotoFilePath { get; set; }
|
2023-10-28 09:06:35 +04:00
|
|
|
|
[Required]
|
2023-11-09 04:07:06 +04:00
|
|
|
|
public string DirectionName { get; set; }
|
2023-10-28 09:06:35 +04:00
|
|
|
|
}
|
|
|
|
|
}
|