24 lines
595 B
C#
24 lines
595 B
C#
using System.Collections.Generic;
|
|
|
|
namespace NPP.SmartSchedue.Api.Contracts.Services.Notification.Output;
|
|
|
|
/// <summary>
|
|
/// 获取系统变量输出模型
|
|
/// </summary>
|
|
public class GetSystemVariablesOutput
|
|
{
|
|
/// <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; } = "";
|
|
} |