NucuCar/NucuCar.Telemetry/PublisherType.cs

15 lines
439 B
C#
Raw Permalink Normal View History

using NucuCar.Telemetry.Publishers;
namespace NucuCar.Telemetry
2019-12-28 15:09:17 +00:00
{
/// <summary>
/// TelemetryPublisherType holds constants for instantiating <see cref="BasePublisher"/>,
2019-12-28 15:09:17 +00:00
/// </summary>
public static class PublisherType
2019-12-28 15:09:17 +00:00
{
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
}
}