mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-01-01 05:13:40 +01:00
12 lines
461 B
C#
12 lines
461 B
C#
namespace Dalamud.Interface.ImGuiNotification.EventArgs;
|
|
|
|
/// <summary>Arguments for use with <see cref="IActiveNotification.Dismiss"/>.</summary>
|
|
/// <remarks>Not to be implemented by plugins.</remarks>
|
|
public interface INotificationDismissArgs
|
|
{
|
|
/// <summary>Gets the notification being dismissed.</summary>
|
|
IActiveNotification Notification { get; }
|
|
|
|
/// <summary>Gets the dismiss reason.</summary>
|
|
NotificationDismissReason Reason { get; }
|
|
}
|