using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace RealTimeGraphX { /// /// Represents an component that extends the appearance of a surface. /// public interface IGraphSurfaceComponent { /// /// Gets or sets the surface. /// IGraphSurface Surface { get; set; } } }