20 lines
529 B
C#
20 lines
529 B
C#
// ***********************************************************************
|
|
// <copyright file="ServiceSettings.cs">
|
|
// Heath
|
|
// </copyright>
|
|
// ***********************************************************************
|
|
|
|
namespace Lib.Common.LoggingAPI.Common.Settings
|
|
{
|
|
/// <summary>
|
|
/// The service settings.
|
|
/// </summary>
|
|
public class ServiceSettings
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the service identifier.
|
|
/// </summary>
|
|
public string? ServiceId { get; set; }
|
|
}
|
|
}
|