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