Nullability fix

This commit is contained in:
2023-09-27 16:22:46 +02:00
parent 373847b1ad
commit ed1ce953df

View File

@@ -5,7 +5,7 @@ public class OptionElement<T> : IOptionElement
public string Text { get; } public string Text { get; }
public T Value { get; } public T Value { get; }
object IOptionElement.Value => Value; object? IOptionElement.Value => Value;
public OptionElement(string text, T value) public OptionElement(string text, T value)
{ {