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