From 2af29f83769915cc8273d900540f29c84dc23241 Mon Sep 17 00:00:00 2001 From: Kevin Zhang Date: Sat, 31 Jul 2021 16:07:14 +0800 Subject: [PATCH] Create GlyphInfo.cs Add GlyphInfo File --- Flow.Launcher.Plugin/GlyphInfo.cs | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Flow.Launcher.Plugin/GlyphInfo.cs diff --git a/Flow.Launcher.Plugin/GlyphInfo.cs b/Flow.Launcher.Plugin/GlyphInfo.cs new file mode 100644 index 000000000..d24624d8f --- /dev/null +++ b/Flow.Launcher.Plugin/GlyphInfo.cs @@ -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); +}