Skip to content

Instantly share code, notes, and snippets.

@zHaytam
Created October 19, 2020 18:53
Show Gist options
  • Save zHaytam/855771002e85db9185c14a19129eefbd to your computer and use it in GitHub Desktop.
Save zHaytam/855771002e85db9185c14a19129eefbd to your computer and use it in GitHub Desktop.
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