17 lines
430 B
C#
17 lines
430 B
C#
using System.ComponentModel.DataAnnotations;
|
|
namespace UniversityDatabaseImplement.Models
|
|
{
|
|
public class Student
|
|
{
|
|
public int Id { get; set; }
|
|
[Required]
|
|
public string FIO { get; set; }
|
|
[Required]
|
|
public string Email { get; set; }
|
|
[Required]
|
|
public string PhotoFilePath { get; set; }
|
|
[Required]
|
|
public string DirectionName { get; set; }
|
|
}
|
|
}
|