mirror of
https://github.com/GCMatters/hermes.git
synced 2026-02-04 13:40:13 +01:00
CreateDatabase
Nic nie działa bo wszystko jest inne XDD
This commit is contained in:
11
WebApp/Entities/Skill.cs
Normal file
11
WebApp/Entities/Skill.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
namespace WebApp.Entities
|
||||
{
|
||||
public class Skill
|
||||
{
|
||||
public int SkillId { get; set; }
|
||||
public required string Name { get; set; }
|
||||
|
||||
public ICollection<VolunteerSkill> VolunteerSkills { get; set; } = new List<VolunteerSkill>();
|
||||
public ICollection<EventSkill> EventSkills { get; set; } = new List<EventSkill>();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user