14 lines
260 B
C#
Raw Permalink Normal View History

2024-02-02 11:10:52 +04:00
namespace EkzamenDataModels
{
public interface IStudentModel : IId
{
string fio { get; }
int GroupId { get; }
int RecordBookId { get; }
int PassMark { get; }
DateTime DateEnrollment { get; }
}
}