2024-04-18 19:35:33 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using UniversityDataModels.Models;
|
|
|
|
|
|
2024-04-19 19:30:16 +04:00
|
|
|
|
namespace UniversityContracts.BindingModels
|
2024-04-18 19:35:33 +04:00
|
|
|
|
{
|
|
|
|
|
public class AttestationBindingModel : IAttestationModel
|
|
|
|
|
{
|
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
public string FormOfEvaluation { get; set; } = string.Empty;
|
|
|
|
|
public string Score { get; set; } = string.Empty;
|
|
|
|
|
public int StudentId { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|