16 lines
424 B
C#
16 lines
424 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace Microsoft.eShopOnContainers.Services.Locations.API
|
|||
|
{
|
|||
|
public class LocationSettings
|
|||
|
{
|
|||
|
public string ExternalCatalogBaseUrl { get; set; }
|
|||
|
public string EventBusConnection { get; set; }
|
|||
|
public string ConnectionString { get; set; }
|
|||
|
public string Database { get; set; }
|
|||
|
}
|
|||
|
}
|