feat(esppOrderManager): вынесен шаблон поля Решение в настройки.

This commit is contained in:
Mikhail Trubnikov
2023-11-21 14:37:41 +10:00
parent f85b97f60a
commit 9532ee8487
7 changed files with 54 additions and 31 deletions

View File

@@ -0,0 +1,14 @@
namespace PARR.EsppOrderManager.Settings
{
/// <summary>
/// Настройки шаблона поля "решение" в ЕСПП
/// </summary>
internal class ResultTemplateSettings
{
public string Template { get; set; } = string.Empty;
public string MsgAgent { get; set; } = string.Empty;
public string MsgAgentEmpty { get; set; } = string.Empty;
}
}