21 lines
567 B
C#
21 lines
567 B
C#
// ***********************************************************************
|
|
// <copyright file="ServiceSettings.cs">
|
|
// Heath
|
|
// </copyright>
|
|
// ***********************************************************************
|
|
|
|
namespace Core.Blueprint.Logging
|
|
{
|
|
/// <summary>
|
|
/// The service settings.
|
|
/// </summary>
|
|
public class ServiceSettings
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the service identifier.
|
|
/// </summary>
|
|
public string? ApplicationName { get; set; }
|
|
public string? LayerName { get; set; }
|
|
}
|
|
}
|