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