1234567891011121314151617 |
- using System;
- using System.Collections.Generic;
- namespace AvaloniaApplication4.Models;
- public partial class ModulesWithCompetency
- {
- public int Id { get; set; }
- public int IdModule { get; set; }
- public int IdCompetence { get; set; }
- public virtual Competency IdCompetenceNavigation { get; set; } = null!;
- public virtual Module IdModuleNavigation { get; set; } = null!;
- }
|