feat: add events for drop and chat message

This commit is contained in:
k0t9i
2023-01-31 16:14:13 +04:00
parent 31febdd341
commit d2b20e0666
15 changed files with 101 additions and 69 deletions

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 DropCreatedEvent : EventInterface
{
public readonly Drop Drop;
public DropCreatedEvent(Drop drop)
{
Drop = drop;
}
}
}