26 lines
569 B
C#
26 lines
569 B
C#
![]() |
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace kursovaya.Models;
|
|||
|
|
|||
|
public partial class Attestation
|
|||
|
{
|
|||
|
public int IdUser { get; set; }
|
|||
|
|
|||
|
public int IdDiscipline { get; set; }
|
|||
|
|
|||
|
public int AttestFirst { get; set; }
|
|||
|
|
|||
|
public int AttestSecond { get; set; }
|
|||
|
|
|||
|
public int AttestThird { get; set; }
|
|||
|
|
|||
|
public int Total { get; set; }
|
|||
|
|
|||
|
public string Grade { get; set; } = null!;
|
|||
|
|
|||
|
public virtual Discipline IdDisciplineNavigation { get; set; } = null!;
|
|||
|
|
|||
|
public virtual Student IdUserNavigation { get; set; } = null!;
|
|||
|
}
|