Maksim Lioshyn 78af81bf1c Task 1 done
2023-01-04 14:56:13 +04:00

16 lines
349 B
C#

namespace Coupon.API
{
public class CouponSettings
{
public string ConnectionString { get; set; }
public string CouponMongoDatabase { get; set; }
public string EventBusConnection { get; set; }
public bool UseCustomizationData { get; set; }
public bool AzureStorageEnabled { get; set; }
}
}