using System; using System.Collections.Generic; namespace AvaloniaApplication4.Models; public partial class Competency { public int IdCompenetnce { get; set; } public string NameCompetence { get; set; } = null!; public string? Description { get; set; } public string CodeCompenetnce { get; set; } = null!; public virtual CodeCompetency CodeCompenetnceNavigation { get; set; } = null!; public virtual ICollection ModulesWithCompetencies { get; set; } = new List(); }