namespace NPP.SmartSchedue.Api.Contracts.Services.Notification.Output; /// /// 渲染模板输出模型 /// public class RenderTemplateOutput { /// /// 渲染后的内容 /// public string RenderedContent { get; set; } = ""; /// /// 是否渲染成功 /// public bool Success { get; set; } = true; /// /// 错误信息 /// public string ErrorMessage { get; set; } = ""; }