Create GlyphInfo.cs

Add GlyphInfo File
This commit is contained in:
Kevin Zhang 2021-07-31 16:07:14 +08:00
parent fd39b60f7b
commit 2af29f8376

View file

@ -0,0 +1,11 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Media;
namespace Flow.Launcher.Plugin
{
public record GlyphInfo(string FontFamily, string Glyph);
}