diff --git a/src/Core/FileTime.Core.Abstraction/Interactions/OptionElement.cs b/src/Core/FileTime.Core.Abstraction/Interactions/OptionElement.cs index 8fa1eac..4d1e879 100644 --- a/src/Core/FileTime.Core.Abstraction/Interactions/OptionElement.cs +++ b/src/Core/FileTime.Core.Abstraction/Interactions/OptionElement.cs @@ -5,7 +5,7 @@ public class OptionElement : IOptionElement public string Text { get; } public T Value { get; } - object IOptionElement.Value => Value; + object? IOptionElement.Value => Value; public OptionElement(string text, T value) {