MdkWithModule.cs 349 B

123456789101112131415
  1. using System;
  2. using System.Collections.Generic;
  3. namespace AvaloniaApplication3.Models;
  4. public partial class MdkWithModule
  5. {
  6. public int IdModule { get; set; }
  7. public int IdMdk { get; set; }
  8. public virtual AcademicSubject IdMdkNavigation { get; set; } = null!;
  9. public virtual Module IdModuleNavigation { get; set; } = null!;
  10. }