mirror of
https://github.com/GCMatters/hermes.git
synced 2026-02-04 05:30:13 +01:00
12 lines
355 B
C#
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>();
|
|
}
|
|
}
|