MdkWithModule.cs 374 B

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