kursovaya/Models/Discipline.cs

20 lines
545 B
C#
Raw Normal View History

2025-04-11 10:14:28 +00:00
using System;
using System.Collections.Generic;
namespace kursovaya.Models;
public partial class Discipline
{
public int Id { get; set; }
public string Name { get; set; } = null!;
public int IdFormAttest { get; set; }
public virtual ICollection<Attestation> Attestations { get; set; } = new List<Attestation>();
public virtual ICollection<DisciplineTeacher> DisciplineTeachers { get; set; } = new List<DisciplineTeacher>();
public virtual FormAttest IdFormAttestNavigation { get; set; } = null!;
}