11 lines
267 B
C#
11 lines
267 B
C#
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;
|
|
|
|
}
|
|
}
|