// ReSharper disable UnusedAutoPropertyAccessor.Global using NucuCar.Telemetry.Publishers; namespace NucuCar.Telemetry { public class Config { /// /// The Publisher is used by to instantiate /// the correct . For available types see /// public string Publisher { get; set; } public bool ServiceEnabled { get; set; } public int PublishInterval { get; set; } public string ConnectionString { get; set; } } }