16 lines
383 B
C#
16 lines
383 B
C#
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;
|
|
}
|
|
}
|