2024-04-21 19:12:38 +04:00
|
|
|
|
using UniversityDataModels.Enums;
|
|
|
|
|
|
|
|
|
|
namespace UniversityDataModels.Models
|
2024-04-18 19:09:47 +04:00
|
|
|
|
{
|
|
|
|
|
public interface IAttestationModel : IId
|
|
|
|
|
{
|
|
|
|
|
string FormOfEvaluation { get; }
|
2024-04-21 19:12:38 +04:00
|
|
|
|
AttestationScore Score { get; }
|
2024-04-18 19:09:47 +04:00
|
|
|
|
int StudentId { get; }
|
|
|
|
|
}
|
|
|
|
|
}
|