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