2023-10-24 15:40:52 +10:00
|
|
|
|
using System.Security;
|
|
|
|
|
|
|
|
|
|
|
|
namespace PARR.EsppApi.Settings
|
2023-10-19 16:55:42 +10:00
|
|
|
|
{
|
|
|
|
|
|
internal class EsppOrderSettings
|
|
|
|
|
|
{
|
|
|
|
|
|
public string Url { get; set; } = string.Empty;
|
2023-10-24 12:10:19 +10:00
|
|
|
|
public string UserName { get; set; } = string.Empty;
|
|
|
|
|
|
public string Password { get; set; } = string.Empty;
|
2023-10-19 16:55:42 +10:00
|
|
|
|
|
2023-10-24 15:40:52 +10:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Часовая зона пользователя в ЕСПП относительно UTC
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public int EsppUserTimeZone { get; set; }
|
2023-10-19 16:55:42 +10:00
|
|
|
|
}
|
|
|
|
|
|
}
|