File: IFont.cs
Web Access
Project: src\src\Graphics\src\Graphics\Graphics.csproj (Microsoft.Maui.Graphics)
namespace Microsoft.Maui.Graphics
{
	public interface IFont
	{
		string Name { get; }
		int Weight { get; }
		FontStyleType StyleType { get; }
	}
}