Files
parr_api/PARR.EsppOrderManager/Settings/EsppPoligonSettings.cs

20 lines
775 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

namespace PARR.EsppOrderManager.Settings
{
/// <summary>
/// Настройки смежных полигнов (продуктив/дев ЕСПП). Значения на полигонах могут отличаться.
/// Чтобы тестировать, подменяем значения из БД, берем из этих настроек.
/// </summary>
internal class EsppPoligonSettings
{
/// <summary>
/// Применить все настройки
/// </summary>
public bool IsEnabled { get; set; }
/// <summary>
/// Значение ТНК, заменяет значение из БД.
/// </summary>
public string TnkValue { get; set; } = string.Empty;
}
}