using Microsoft.Extensions.Logging;
namespace NucuCar.Domain.Telemetry
{
///
/// This class contains options for the .
///
public class TelemetryPublisherBuilderOptions
{
///
/// The ConnectionString used by the publisher to connect to the cloud service.
///
public string ConnectionString { get; set; }
///
/// A string that indicates the source of the telemetry data.
///
public string TelemetrySource { get; set; }
///
/// The logger instance.
///
public ILogger Logger { get; set; }
}
}