diff --git a/src/Unicorn.UI.Core/Controls/Interfaces/Typified/ITextInput.cs b/src/Unicorn.UI.Core/Controls/Interfaces/Typified/ITextInput.cs index b0c13bb..fa02a2f 100644 --- a/src/Unicorn.UI.Core/Controls/Interfaces/Typified/ITextInput.cs +++ b/src/Unicorn.UI.Core/Controls/Interfaces/Typified/ITextInput.cs @@ -1,19 +1,11 @@ namespace Unicorn.UI.Core.Controls.Interfaces.Typified { /// - /// Interface for text inputs (text edits) implementation. + /// Interface for text inputs (text edits) implementation. /// Has definitions of basic methods and properties. /// - public interface ITextInput + public interface ITextInput : IHasValue { - /// - /// Gets text input value. - /// - string Value - { - get; - } - /// /// Send keys (add text) to already existing input value. ///