21 lines
600 B
C#
21 lines
600 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using UniversityDataModels.Models;
|
|
|
|
namespace UniversityContracts.ViewModels
|
|
{
|
|
public class AttestationViewModel : IAttestationModel
|
|
{
|
|
public int Id { get; set; }
|
|
public int StudentId { get; set; }
|
|
[DisplayName("Форма оценивания")]
|
|
public string FormOfEvaluation { get; set; } = string.Empty;
|
|
[DisplayName("Оценка")]
|
|
public string Score { get; set; } = string.Empty;
|
|
}
|
|
}
|