14 lines
260 B
C#
14 lines
260 B
C#
namespace EkzamenDataModels
|
|
{
|
|
public interface IStudentModel : IId
|
|
{
|
|
string fio { get; }
|
|
|
|
int GroupId { get; }
|
|
int RecordBookId { get; }
|
|
int PassMark { get; }
|
|
|
|
DateTime DateEnrollment { get; }
|
|
}
|
|
}
|