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

10 lines
No EOL
246 B
C#

using WingsEmu.DTOs.Quests;
using WingsEmu.Game._packetHandling;
namespace WingsEmu.Game.Quests.Event;
public class QuestAddedEvent : PlayerEvent
{
public int QuestId { get; init; }
public QuestSlotType QuestSlotType { get; init; }
}