Asoka.Wang 2b3f9acdce 123
2025-09-22 19:09:47 +08:00

24 lines
597 B
C#

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