using System.Collections.Generic;
namespace NPP.SmartSchedue.Api.Contracts.Services.Notification.Output;
///
/// 获取系统变量输出模型
///
public class GetSystemVariablesOutput
{
///
/// 系统变量字典
///
public Dictionary Variables { get; set; } = new Dictionary();
///
/// 是否获取成功
///
public bool Success { get; set; } = true;
///
/// 错误信息
///
public string ErrorMessage { get; set; } = "";
}