Created
October 19, 2020 18:53
-
-
Save zHaytam/855771002e85db9185c14a19129eefbd 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
public class PossibleOption | |
{ | |
public string Name { get; } | |
public string Type { get; } | |
public string Default { get; } | |
public string Description { get; } | |
public PossibleOption(string name, string type, string @default, string description) | |
{ | |
Name = name; | |
Type = type; | |
Default = @default; | |
Description = description; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment