Files
L2Bot2.0/Client/Domain/Events/DropCreatedEvent.cs
2023-01-31 16:14:13 +04:00

20 lines
372 B
C#

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