14 lines
313 B
C#
14 lines
313 B
C#
using UniversityDataModels.Enums;
|
|
|
|
namespace UniversityDataModels.Models
|
|
{
|
|
public interface IAttestationModel : IId
|
|
{
|
|
int UserId { get; }
|
|
string StudentName { get; }
|
|
string FormOfEvaluation { get; }
|
|
AttestationScore Score { get; }
|
|
int StudentId { get; }
|
|
}
|
|
}
|