using CUE.NET.Gradients; namespace CUE.NET.Brushes { /// /// Represents a basic gradient-brush. /// public interface IGradientBrush : IBrush { /// /// Gets the gradient used by this . /// IGradient Gradient { get; } } }