namespace ConsoleApp2; public class CsvOptions { /// /// The directory to input csv and sql file. /// public string InputDir { get; set; } = "./"; /// /// The output directory. /// public string OutputDir { get; set; } = "./Output"; /// /// The ASCII char that fields are enclosed by. Default is '"'. /// public char QuoteChar { get; set; } = '"'; /// /// The ASCII char that fields are separated by. Default is ','. /// public char DelimiterChar { get; set; } = ','; /// /// The max number of threads to use. /// public int MaxThreads { get; set; } = 12; }