Module.cs 382 B

123456789101112131415
  1. using System;
  2. using System.Collections.Generic;
  3. namespace AvaloniaApplication3.Models;
  4. public partial class Module
  5. {
  6. public int IdModule { get; set; }
  7. public string CodeModule { get; set; } = null!;
  8. public string Name { get; set; } = null!;
  9. public virtual ICollection<ProgramsWithModule> ProgramsWithModules { get; set; } = new List<ProgramsWithModule>();
  10. }