first checkin
[mono.git] / mcs / class / System.Drawing / System.Drawing / impl / ItfSolidBrush.cs
1 //
2 // System.Drawing.SolidBrush.cs
3 //
4 // Author:
5 //   Dennis Hayes (dennish@Raytek.com)
6 //
7 // (C) 2002 Ximian, Inc
8 //
9 using System;
10
11 namespace System.Drawing
12 {
13         internal interface ISolidBrushFactory {
14                 ISolidBrush SolidBrush(Color color);
15         }
16
17         internal interface ISolidBrush : IBrush {
18
19                 Color Color {
20                         get ;
21                         set ;
22                 }
23                 
24         }
25 }
26