server-master/srcs/WingsAPI.Game/Raids/Events/RaidInstanceRefreshInfoEvent.cs
2026-02-10 18:21:30 +01:00

10 lines
No EOL
255 B
C#

using PhoenixLib.Events;
namespace WingsEmu.Game.Raids.Events;
public class RaidInstanceRefreshInfoEvent : IAsyncEvent
{
public RaidInstanceRefreshInfoEvent(RaidParty raidParty) => RaidParty = raidParty;
public RaidParty RaidParty { get; }
}