NucuCar/NucuCar.Domain/Telemetry/TelemetryPublisherType.cs
2020-02-08 19:47:44 +02:00

13 lines
No EOL
427 B
C#

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";
public const string Firestore = "Firestore";
}
}