CreateDatabase

Nic nie działa bo wszystko jest inne XDD
This commit is contained in:
AleksDw
2025-04-27 00:40:34 +02:00
parent fdd7244c59
commit b4b81355c1
15 changed files with 1218 additions and 96 deletions

11
WebApp/Entities/Skill.cs Normal file
View 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>();
}
}