Flow.Launcher/Flow.Launcher.Plugin/GlyphInfo.cs
Kevin Zhang 2af29f8376 Create GlyphInfo.cs
Add GlyphInfo File
2021-07-31 16:07:14 +08:00

11 lines
245 B
C#

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);
}