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

24 lines
565 B
C#

using System.Collections.Generic;
namespace NPP.SmartSchedue.Api.Contracts.Services.Notification.Output;
/// <summary>
/// 提取变量输出模型
/// </summary>
public class ExtractVariablesOutput
{
/// <summary>
/// 提取到的变量列表
/// </summary>
public List<string> Variables { get; set; } = new List<string>();
/// <summary>
/// 是否提取成功
/// </summary>
public bool Success { get; set; } = true;
/// <summary>
/// 错误信息
/// </summary>
public string ErrorMessage { get; set; } = "";
}