2023-10-28 09:06:35 +04:00
|
|
|
|
namespace UniversityDataModels.Models
|
|
|
|
|
{
|
2023-11-09 04:07:06 +04:00
|
|
|
|
public interface IStudentModel
|
2023-10-28 09:06:35 +04:00
|
|
|
|
{
|
|
|
|
|
string FIO { get; }
|
|
|
|
|
string PhotoFilePath { get; }
|
|
|
|
|
string Email { get; }
|
|
|
|
|
string DirectionName { get; }
|
|
|
|
|
}
|
|
|
|
|
}
|