Last active
August 29, 2015 14:03
-
-
Save stimms/5c4c51d721e9ba1253c0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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