BadScript 2
Loading...
Searching...
No Matches
Options_With_Nullable_Enum_Having_HelpText.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(HelpText = "Define a string value here.")]
8 public string StringValue { get; set; }
9
10 [Option(HelpText="Define a enum value here.")]
11 public Shapes? Shape { get; set; }
12 }
13}