UICatalogCommandLineOptions.cs 430 B

1234567891011121314151617181920
  1. #nullable enable
  2. namespace UICatalog;
  3. public struct UICatalogCommandLineOptions
  4. {
  5. public string Driver { get; set; }
  6. public bool DontEnableConfigurationManagement { get; set; }
  7. public string Scenario { get; set; }
  8. public uint BenchmarkTimeout { get; set; }
  9. public bool Benchmark { get; set; }
  10. public string ResultsFile { get; set; }
  11. public string DebugLogLevel { get; set; }
  12. /* etc. */
  13. }