BadScript 2
Loading...
Searching...
No Matches
Simple_Options_With_Enum.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{
5 public enum Colors
6 {
7 Red,
8 Green,
9 Blue
10 }
11
13 {
14 [Option]
15 public Colors Colors { get; set; }
16 }
17}