Files
hermes/WebApp/Entities/Skill.cs
AleksDw b4b81355c1 CreateDatabase
Nic nie działa bo wszystko jest inne XDD
2025-04-27 00:40:34 +02:00

12 lines
355 B
C#

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>();
}
}