namespace Dalamud.Game.Gui;
///
/// This class represents the hotbar action currently hovered over by the cursor.
///
public class HoveredAction
{
///
/// Gets or sets the base action ID.
///
public uint BaseActionID { get; set; } = 0;
///
/// Gets or sets the action ID accounting for automatic upgrades.
///
public uint ActionID { get; set; } = 0;
///
/// Gets or sets the type of action.
///
public HoverActionKind ActionKind { get; set; } = HoverActionKind.None;
}