2016-09-14 08:35:34 -07:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace Microsoft.eShopOnContainers.WebMVC
|
|
|
|
|
{
|
|
|
|
|
public class AppSettings
|
|
|
|
|
{
|
|
|
|
|
public Connectionstrings ConnectionStrings { get; set; }
|
|
|
|
|
public string CatalogUrl { get; set; }
|
2016-10-10 21:52:57 -07:00
|
|
|
|
public string OrderingUrl { get; set; }
|
2016-09-14 08:35:34 -07:00
|
|
|
|
public Logging Logging { get; set; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class Connectionstrings
|
|
|
|
|
{
|
|
|
|
|
public string DefaultConnection { get; set; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class Logging
|
|
|
|
|
{
|
|
|
|
|
public bool IncludeScopes { get; set; }
|
|
|
|
|
public Loglevel LogLevel { get; set; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class Loglevel
|
|
|
|
|
{
|
|
|
|
|
public string Default { get; set; }
|
|
|
|
|
public string System { get; set; }
|
|
|
|
|
public string Microsoft { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|