Flow.Launcher/Flow.Launcher.Plugin/GlyphInfo.cs
2023-04-25 21:02:34 +08:00

9 lines
305 B
C#

namespace Flow.Launcher.Plugin
{
/// <summary>
/// Text with FontFamily specified
/// </summary>
/// <param name="FontFamily">Font Family of this Glyph</param>
/// <param name="Glyph">Text/Unicode of the Glyph</param>
public record GlyphInfo(string FontFamily, string Glyph);
}