17 lines
489 B
C#
17 lines
489 B
C#
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 Password { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// Часовая зона пользователя в ЕСПП относительно UTC
|
|
/// </summary>
|
|
public int EsppUserTimeZone { get; set; }
|
|
}
|
|
}
|