1
0
mirror of synced 2025-01-10 04:01:46 +01:00

8 lines
173 B
C#
Raw Normal View History

namespace TaikoWebUI.Settings;
public class Language
{
public string CultureCode { get; set; } = "en-US";
public string DisplayName { get; set; } = "English";
}