Core.BluePrint.Packages/Core.Blueprint.Logging/Adapters/ServiceSettings.cs
2025-05-17 23:14:35 -06:00

21 lines
571 B
C#

// ***********************************************************************
// <copyright file="ServiceSettings.cs">
// AgileWebs
// </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; }
}
}