24 lines
565 B
C#
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; } = "";
|
|
} |