mirror of
https://github.com/jayfunc/BetterLyrics.git
synced 2026-01-12 19:24:55 +08:00
17 lines
291 B
C#
17 lines
291 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BetterLyrics.WinUI3.Enums
|
|
{
|
|
public enum Language
|
|
{
|
|
FollowSystem,
|
|
English,
|
|
SimplifiedChinese,
|
|
TraditionalChinese,
|
|
}
|
|
}
|