BadScript 2
Loading...
Searching...
No Matches
Options_With_Named_And_Empty_Sets.cs
Go to the documentation of this file.
1// Copyright 2005-2015 Giacomo Stelluti Scala & Contributors. All rights reserved. See License.md in the project root for license information.
2
4{
6 {
7 [Option(SetName = "web")]
8 public string WebUrl { get; set; }
9
10 [Option(SetName = "web")]
11 public int MaxLinks { get; set; }
12
13 [Option(SetName = "ftp")]
14 public string FtpUrl { get; set; }
15
16 [Option(SetName = "ftp")]
17 public int MaxFiles { get; set; }
18
19 [Option]
20 public bool Verbose { get; set; }
21
22 [Option]
23 public bool Interactive { get; set; }
24 }
25}