14 lines
319 B
C#

namespace StudentEnrollmentDataModels.Models
{
public interface IStudentModel : IId
{
string LastName { get; }
string FirstName { get; }
string MiddleName { get; }
string Email { get; }
string TIN { get; }
long ExamPointsId { get; }
Dictionary<long, (ICourseModel, long)> StudentCourse { get; }
}
}