Co-authored-by: defnotken <itsdefnotken@gmail.com> Co-authored-by: cake <admin@cakeandbanana.nl> Reviewed-on: #88 Reviewed-by: cake <cake@noreply.git.lightless-sync.org> Co-authored-by: defnotken <defnotken@noreply.git.lightless-sync.org> Co-committed-by: defnotken <defnotken@noreply.git.lightless-sync.org>
15 lines
548 B
C#
15 lines
548 B
C#
using Dalamud.Interface;
|
|
using System.Numerics;
|
|
|
|
namespace LightlessSync.UI.Models;
|
|
|
|
public class LightlessNotificationAction
|
|
{
|
|
public string Id { get; set; } = Guid.NewGuid().ToString();
|
|
public string Label { get; set; } = string.Empty;
|
|
public FontAwesomeIcon Icon { get; set; } = FontAwesomeIcon.None;
|
|
public Vector4 Color { get; set; } = Vector4.One;
|
|
public Action<LightlessNotification> OnClick { get; set; } = _ => { };
|
|
public bool IsPrimary { get; set; } = false;
|
|
public bool IsDestructive { get; set; } = false;
|
|
} |