using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DTS.Common.XMLUtils { public class FieldsXMLClass { public string SetupName { get; set; } public string SetupDescription { get; set; } public string AutomaticTestProgression { get; set; } public string AutomaticProgressionDelayMS { get; set; } public string InvertTrigger { get; set; } public string InvertStart { get; set; } public string IgnoreShortedStart { get; set; } public string IgnoreShortedTrigger { get; set; } public string ViewDiagnostics { get; set; } public string VerifyChannels { get; set; } public string AutoVerifyChannels { get; set; } public string VerifyChannelsDelayMS { get; set; } public string RecordingMode { get; set; } public string SamplesPerSecond { get; set; } public string PreTriggerSeconds { get; set; } public string PostTriggerSeconds { get; set; } public string NumberOfEvents { get; set; } public string WakeUpMotionTimeout { get; set; } public string ScheduledStartDateTime { get; set; } public string IntervalBetweenEventStartsMinutes { get; set; } public string StartWithEvent { get; set; } public string WakeUpWithMotion { get; set; } public string StrictDiagnostics { get; set; } public string RequireConfirmationOnErrors { get; set; } public string ROIDownload { get; set; } public string ViewROIDownload { get; set; } public string DownloadAll { get; set; } public string ViewRealtime { get; set; } public string RealtimePlotCount { get; set; } //public RegionsOfInterestXMLClass RegionsOfInterest { get; set; } public string ROIStart { get; set; } public string ROIEnd { get; set; } public string ViewDownloadAll { get; set; } public string Export { get; set; } public string ExportFormat { get; set; } public string LabDetails { get; set; } public string UseLabDetails { get; set; } public string CustomerDetails { get; set; } public string UseCustomerDetails { get; set; } public string AllowMissingSensors { get; set; } public string AllowSensorIdToBlankChannel { get; set; } public string ExcitationWarmupTimeMS { get; set; } public string LocalOnly { get; set; } public string LastModified { get; set; } public string LastModifiedBy { get; set; } public string TurnOffExcitation { get; set; } public string TriggerCheckRealtime { get; set; } public string TriggerCheckStep { get; set; } public string PostTestDiagnostics { get; set; } public string ExportFolder { get; set; } public string DownloadFolder { get; set; } public string CommonStatusLine { get; set; } public string SameAsDownloadFolder { get; set; } public string UploadData { get; set; } public string UploadDataFolder { get; set; } public string UploadExportsOnly { get; set; } public string Settings { get; set; } public string WarnOnBatteryFail { get; set; } public string Dirty { get; set; } public string Complete { get; set; } public string ErrorMessage { get; set; } public string TestEngineerDetails { get; set; } public string UseTestEngineerDetails { get; set; } public string UserTags { get; set; } public string DoAutoArm { get; set; } public string DoEnableRepeat { get; set; } public string DoStreaming { get; set; } public string CheckoutMode { get; set; } public string QuitTestWithoutWarning { get; set; } public string SuppressMissingSensorsWarning { get; set; } public string ISFFile { get; set; } public string NotAllChannelsRealTime { get; set; } public string NotAllChannelsViewer { get; set; } public string CalibrationBehavior { get; set; } public string ClockSyncProfileMaster { get; set; } public string ClockSyncProfileSlave { get; set; } public string ExtraProperties { get; set; } public string MeasureSquibResistancesStep { get; set; } public string TestSetupUniqueId { get; set; } } }