private Option(Identifier identifier, OptionValue optionValue) { Identifier = identifier; OptionValue = optionValue; }
public static Option From(Identifier identifier, OptionValue optionValue) { return(new Option(identifier, optionValue)); }