namespace UniversityDataModels.Models { public interface IStudentModel : IId { string FIO { get; } string PhotoFilePath { get; } string Email { get; } string DirectionName { get; } } }