NucuCar/NucuCar.Domain/Telemetry/TelemetryPublisherType.cs

12 lines
374 B
C#
Raw Normal View History

2019-12-28 15:09:17 +00:00
namespace NucuCar.Domain.Telemetry
{
/// <summary>
/// TelemetryPublisherType holds constants for instantiating <see cref="TelemetryPublisher"/>,
/// see <see cref="TelemetryPublisherFactory"/>.
/// </summary>
public static class TelemetryPublisherType
{
public const string Azure = "Azure";
public const string Disk = "Disk";
}
}