server-master/srcs/WingsAPI.Game/Families/Event/FamilyAddLogEvent.cs
2026-02-10 18:21:30 +01:00

15 lines
No EOL
303 B
C#

// WingsEmu
//
// Developed by NosWings Team
using WingsAPI.Data.Families;
using WingsEmu.Game._packetHandling;
namespace WingsEmu.Game.Families.Event;
public class FamilyAddLogEvent : PlayerEvent
{
public FamilyAddLogEvent(FamilyLogDto log) => Log = log;
public FamilyLogDto Log { get; }
}