Skip to content

Instantly share code, notes, and snippets.

@stimms
Last active August 29, 2015 14:03
Show Gist options
  • Save stimms/5c4c51d721e9ba1253c0 to your computer and use it in GitHub Desktop.
Save stimms/5c4c51d721e9ba1253c0 to your computer and use it in GitHub Desktop.
class Options
{
[Option('u', "export-users", HelpText = "Toggle export of users.", Required = false, DefaultValue = true)]
public bool ExportUsers { get; set; }
[Option("number-of-jobs", HelpText = "Number of jobs to export.", Required = false, DefaultValue = Int32.MaxValue)]
public int JobsToExport { get; set; }
[Option('h', "help", HelpText = "Prints this help", Required = false, DefaultValue = false)]
public bool Help { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment