kursovaya/Models/DisciplineTeacher.cs

18 lines
399 B
C#
Raw Permalink Normal View History

2025-04-11 10:14:28 +00:00
using System;
using System.Collections.Generic;
namespace kursovaya.Models;
public partial class DisciplineTeacher
{
public int Id { get; set; }
public int IdDiscipline { get; set; }
public int IdTeacher { get; set; }
public virtual Discipline IdDisciplineNavigation { get; set; } = null!;
public virtual Teacher IdTeacherNavigation { get; set; } = null!;
}