15 lines
409 B
C#
15 lines
409 B
C#
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;
|
|
}
|
|
}
|