NucuCar/NucuCar.Domain.Telemetry/TelemetryPublisherType.cs

15 lines
455 B
C#
Raw Normal View History

2020-08-01 15:07:13 +00:00
using NucuCar.Telemetry.Abstractions;
namespace NucuCar.Telemetry
2019-12-28 15:09:17 +00:00
{
/// <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";
public const string Console = "Console";
2019-12-28 15:09:17 +00:00
}
}