mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-13 12:14:16 +01:00
19 lines
454 B
C#
19 lines
454 B
C#
namespace Dalamud.Game.Addon.Events;
|
|
|
|
/// <summary>
|
|
/// Class that represents a addon event handle.
|
|
/// </summary>
|
|
public class AddonEventHandle : IAddonEventHandle
|
|
{
|
|
/// <inheritdoc/>
|
|
public uint ParamKey { get; init; }
|
|
|
|
/// <inheritdoc/>
|
|
public string AddonName { get; init; } = "NullAddon";
|
|
|
|
/// <inheritdoc/>
|
|
public AddonEventType EventType { get; init; }
|
|
|
|
/// <inheritdoc/>
|
|
public Guid EventGuid { get; init; }
|
|
}
|