public Choice(ChoiceIdentity Identity, V Value) { this.Identity = Identity; this.Value = Value; }
public Choice(ChoiceIdentity Identity, string Value) : base(Identity, Value) { }
public ChoiceRange(ChoiceIdentity identity, (V Min, V Max) Range)
public Choices(ChoiceIdentity Identity, Seq <Choice> Choices) : base(Identity, Choices) { }