2016-12-19 10:20:02 +01:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace eShopOnContainers.Identity
|
|
|
|
|
{
|
|
|
|
|
public class AppSettings
|
|
|
|
|
{
|
|
|
|
|
public string MvcClient { get; set; }
|
2017-06-20 12:54:32 -07:00
|
|
|
|
public bool UseCustomizationData { get; set; }
|
2016-12-19 10:20:02 +01:00
|
|
|
|
}
|
|
|
|
|
}
|