File: Paint.cs
Web Access
Project: src\src\Graphics\src\Graphics\Graphics.csproj (Microsoft.Maui.Graphics)
namespace Microsoft.Maui.Graphics
{
	public abstract class Paint
	{
		public Color BackgroundColor { get; set; }
 
		public Color ForegroundColor { get; set; }
 
		public virtual bool IsTransparent { get; }
	}
}