Browse Source

Add xml comment

tznind 1 year ago
parent
commit
c62cd84b99
1 changed files with 3 additions and 0 deletions
  1. 3 0
      Terminal.Gui/Drawing/Gradient.cs

+ 3 - 0
Terminal.Gui/Drawing/Gradient.cs

@@ -38,6 +38,9 @@ public enum GradientDirection
 /// </summary>
 public class Gradient
 {
+    /// <summary>
+    /// The discrete colors that will make up the <see cref="Gradient"/>.
+    /// </summary>
     public List<Color> Spectrum { get; private set; }
     private readonly bool _loop;
     private readonly List<Color> _stops;