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

12 lines
No EOL
352 B
C#

using System.Collections.Generic;
using WingsEmu.Game._packetHandling;
using WingsEmu.Game.Networking;
namespace WingsEmu.Game.Act4.Event;
public class Act4FamilyDungeonWonEvent : PlayerEvent
{
public DungeonType DungeonType { get; init; }
public long FamilyId { get; init; }
public IEnumerable<IClientSession> Members { get; init; }
}