13 lines
No EOL
427 B
C#
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";
|
|
}
|
|
} |