using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace HallOfFame { public partial class Skill { public Skill() { ConPersonSkills = new HashSet(); } [Key] public long Id { get; set; } public string Name { get; set; } = null!; [InverseProperty("Skill")] public virtual ICollection ConPersonSkills { get; set; } } }