Files
parr_api/PARR.EsppApi/Settings/EsppOrderSettings.cs

31 lines
913 B
C#
Raw 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.

using System.Security;
namespace PARR.EsppApi.Settings
{
internal class EsppOrderSettings
{
public string Url { get; set; } = string.Empty;
public string UserName { get; set; } = string.Empty;
public string AccountName { get; set; } = string.Empty;
public string Password { get; set; } = string.Empty;
/// <summary>
/// Часовая зона пользователя в ЕСПП относительно UTC
/// </summary>
public int EsppUserTimeZone { get; set; }
/// <summary>
/// Вкладка История: ЭК робота
/// </summary>
public string RobotEk { get; set; } = string.Empty;
/// <summary>
/// Вкладка История: Код мероприятия по РРО
/// </summary>
public string CodeRRO { get; set; } = string.Empty;
}
}