File: ImageSources\ImageSourcePaint.cs
Web Access
Project: src\src\Core\src\Core.csproj (Microsoft.Maui)
#nullable enable
using Microsoft.Maui.Graphics;
 
namespace Microsoft.Maui
{
	class ImageSourcePaint : Paint
	{
		public ImageSourcePaint()
		{
		}
 
		public ImageSourcePaint(IImageSource imageSource)
		{
			ImageSource = imageSource;
		}
 
		public IImageSource? ImageSource { get; set; }
	}
}