2022-12-27 17:33:33 +08:00

23 lines
200 B
C#

using System;
using System.Drawing;
namespace GoldPrinter
{
public interface IDraw
{
Graphics Graphics
{
get;
set;
}
Rectangle Rectangle
{
get;
set;
}
void Draw();
}
}