2017-06-20 12:54:32 -07:00
|
|
|
|
namespace Microsoft.eShopOnContainers.Services.Ordering.API
|
|
|
|
|
{
|
|
|
|
|
public class OrderingSettings
|
|
|
|
|
{
|
|
|
|
|
public bool UseCustomizationData { get; set; }
|
2017-08-29 18:11:30 +02:00
|
|
|
|
public string ConnectionString { get; set; }
|
|
|
|
|
|
|
|
|
|
public string EventBusConnection { get; set; }
|
|
|
|
|
|
|
|
|
|
public int CheckUpdateTime { get; set; }
|
2017-06-20 12:54:32 -07:00
|
|
|
|
}
|
|
|
|
|
}
|