10 lines
204 B
C#
10 lines
204 B
C#
namespace UniversityDataModels.Models
|
|
{
|
|
public interface IAttestationModel : IId
|
|
{
|
|
string FormOfEvaluation { get; }
|
|
string Score { get; }
|
|
int StudentId { get; }
|
|
}
|
|
}
|