mirror of
https://github.com/LanZhan-Harmony/WindowsMusicPlayer-TheUntamedMusicPlayer.git
synced 2026-05-07 03:25:48 +08:00
11 lines
258 B
C#
11 lines
258 B
C#
using Microsoft.UI.Xaml.Media;
|
|
|
|
namespace UntamedMusicPlayer.Models;
|
|
|
|
public sealed class FontInfo
|
|
{
|
|
public string Name { get; set; } = null!;
|
|
public string DisplayName { get; set; } = null!;
|
|
public FontFamily FontFamily { get; set; } = null!;
|
|
}
|