2021-10-03 20:37:53 +00:00
|
|
|
using NucuCar.Telemetry.Publishers;
|
2020-04-20 15:19:32 +00:00
|
|
|
|
|
|
|
namespace NucuCar.Telemetry
|
2019-12-28 15:09:17 +00:00
|
|
|
{
|
|
|
|
/// <summary>
|
2021-10-03 20:37:53 +00:00
|
|
|
/// TelemetryPublisherType holds constants for instantiating <see cref="BasePublisher"/>,
|
2019-12-28 15:09:17 +00:00
|
|
|
/// </summary>
|
2021-10-03 20:37:53 +00:00
|
|
|
public static class PublisherType
|
2019-12-28 15:09:17 +00:00
|
|
|
{
|
|
|
|
public const string Azure = "Azure";
|
|
|
|
public const string Disk = "Disk";
|
2020-02-08 17:47:44 +00:00
|
|
|
public const string Firestore = "Firestore";
|
2020-08-01 14:49:20 +00:00
|
|
|
public const string Console = "Console";
|
2019-12-28 15:09:17 +00:00
|
|
|
}
|
|
|
|
}
|