using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Tango.SQLExaminer { public class Options { public List ComparisonOptions { get; set; } public List PerformanceOptions { get; set; } public List SyncOptions { get; set; } public List AdditionalOptions { get; set; } public Options() { ComparisonOptions = new List(); PerformanceOptions = new List(); SyncOptions = new List(); AdditionalOptions = new List(); } } }