16 lines
378 B
C#
Raw Normal View History

2017-06-20 12:54:32 -07:00
namespace Microsoft.eShopOnContainers.Services.Ordering.API
{
public class OrderingSettings
{
public bool UseCustomizationData { get; set; }
public string ConnectionString { get; set; }
public string EventBusConnection { get; set; }
public int GracePeriodTime { get; set; }
public int CheckUpdateTime { get; set; }
2017-06-20 12:54:32 -07:00
}
}