feat(all): преметры espp Api принимают дату utc. В подробном описании шаблона возвращается префикс.

This commit is contained in:
Mikhail Trubnikov
2023-10-24 15:40:52 +10:00
parent 59db8fa312
commit fbeabeb165
12 changed files with 98 additions and 68 deletions

View File

@@ -1,4 +1,6 @@
namespace PARR.EsppApi.Settings
using System.Security;
namespace PARR.EsppApi.Settings
{
internal class EsppOrderSettings
{
@@ -6,5 +8,9 @@
public string UserName { get; set; } = string.Empty;
public string Password { get; set; } = string.Empty;
/// <summary>
/// Часовая зона пользователя в ЕСПП относительно UTC
/// </summary>
public int EsppUserTimeZone { get; set; }
}
}