using Microsoft.Extensions.Logging; using NucuCar.Telemetry.Publishers; namespace NucuCar.Telemetry { /// /// This class contains options for the . /// public class PublisherOptions { /// /// 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; } } }