diff --git a/Terminal.Gui/Core/View.cs b/Terminal.Gui/Core/View.cs
index 852dd121d..94ceace08 100644
--- a/Terminal.Gui/Core/View.cs
+++ b/Terminal.Gui/Core/View.cs
@@ -170,6 +170,12 @@ namespace Terminal.Gui {
///
public Rune HotKeySpecifier { get => textFormatter.HotKeySpecifier; set => textFormatter.HotKeySpecifier = value; }
+ ///
+ /// Gets or sets arbitrary data for the view.
+ ///
+ /// This property is not used internally.
+ public object Data { get; set; }
+
internal Direction FocusDirection {
get => SuperView?.FocusDirection ?? focusDirection;
set {