12345678910111213141516171819202122 |
- 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<ConPersonSkill>();
- }
- [Key]
- public long Id { get; set; }
- public string Name { get; set; } = null!;
- [InverseProperty("Skill")]
- public virtual ICollection<ConPersonSkill> ConPersonSkills { get; set; }
- }
- }
|