using System; using System.Collections.Generic; using System.Globalization; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DTS.Common.Import.ImportOptions { public class EqxImportOptions { public bool OverwriteExistingSensors { get; set; } = true; public bool ImportSensorModels { get; set; } = true; } }