using UniversityDataModels.Models; namespace UniversityContracts.BindingModels { public class StudentBindingModel : IStudentModel { public int Id { get; set; } public string FIO { get; set; } = string.Empty; public string PhotoFilePath { get; set; } = string.Empty; public string Email { get; set; } = string.Empty; public string DirectionName { get; set; } = string.Empty; } }