using System; using System.Collections.Generic; namespace AvaloniaApplication4.Models; public partial class MdkWithModule { public int IdModule { get; set; } public int IdMdk { get; set; } public int Id { get; set; } public virtual Subject IdMdkNavigation { get; set; } = null!; public virtual Module IdModuleNavigation { get; set; } = null!; }