feat: add skills

This commit is contained in:
k0t9i
2023-02-01 00:30:20 +04:00
parent 823241ef32
commit 32fdef9b1c
13 changed files with 310 additions and 14 deletions

View 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;
}
}
}

View File

@@ -0,0 +1,19 @@
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 SkillDeletedEvent : EventInterface
{
public readonly uint Id;
public SkillDeletedEvent(uint id)
{
Id = id;
}
}
}