- using System;
- using System.Collections.Generic;
- namespace AvaloniaApplication3.Models;
- public partial class MdkWithModule
- {
- public int IdModule { get; set; }
- public int IdMdk { get; set; }
- public virtual AcademicSubject IdMdkNavigation { get; set; } = null!;
- public virtual Module IdModuleNavigation { get; set; } = null!;
- }
|