NucuCar/NucuCar.Domain/Telemetry/TelemetryPublisherType.cs
2020-04-18 14:20:47 +03:00

12 lines
No EOL
374 B
C#

namespace NucuCar.Domain.Telemetry
{
/// <summary>
/// TelemetryPublisherType holds constants for instantiating <see cref="TelemetryPublisher"/>,
/// </summary>
public static class TelemetryPublisherType
{
public const string Azure = "Azure";
public const string Disk = "Disk";
public const string Firestore = "Firestore";
}
}