11 lines
232 B
C#
11 lines
232 B
C#
|
namespace UniversityDataModels.Models
|
|||
|
{
|
|||
|
public interface IStudentModel : IId
|
|||
|
{
|
|||
|
string FIO { get; }
|
|||
|
string PhotoFilePath { get; }
|
|||
|
string Email { get; }
|
|||
|
string DirectionName { get; }
|
|||
|
}
|
|||
|
}
|