14 lines
211 B
C#
14 lines
211 B
C#
using System.Drawing;
|
|
|
|
namespace Dashboard.Drawing
|
|
{
|
|
public abstract class Brush
|
|
{
|
|
}
|
|
|
|
public class SolidColorBrush(Color color) : Brush
|
|
{
|
|
public Color Color { get; } = color;
|
|
}
|
|
}
|