namespace NPP.SmartSchedue.Api.Contracts.Services.Notification.Output;
///
/// 系统消息操作按钮
///
public class SystemMessageAction
{
///
/// 操作ID
///
public string ActionId { get; set; } = "";
///
/// 操作名称
///
public string ActionName { get; set; } = "";
///
/// 操作URL
///
public string ActionUrl { get; set; } = "";
///
/// 操作类型(按钮、链接等)
///
public string ActionType { get; set; } = "button";
///
/// 是否主要操作
///
public bool IsPrimary { get; set; } = false;
}