// ***********************************************************************
//
// Heath
//
// ***********************************************************************
namespace Core.Blueprint.Logging
{
///
/// The service settings.
///
public class ServiceSettings
{
///
/// Gets or sets the service identifier.
///
public string? ApplicationName { get; set; }
public string? LayerName { get; set; }
}
}