feat: add skills
This commit is contained in:
20
Client/Domain/Events/SkillCreatedEvent.cs
Normal file
20
Client/Domain/Events/SkillCreatedEvent.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
using Client.Domain.Entities;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Client.Domain.Events
|
||||
{
|
||||
public class SkillCreatedEvent : EventInterface
|
||||
{
|
||||
public readonly Skill Skill;
|
||||
|
||||
public SkillCreatedEvent(Skill skill)
|
||||
{
|
||||
Skill = skill;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user