namespace Core.Common.Gui { /// /// Interface for object properties /// public interface IObjectProperties { /// /// The data of the object properties /// object Data { get; set; } } }