8 lines
173 B
C#
8 lines
173 B
C#
|
namespace TaikoWebUI.Settings;
|
|||
|
|
|||
|
public class Language
|
|||
|
{
|
|||
|
public string CultureCode { get; set; } = "en-US";
|
|||
|
|
|||
|
public string DisplayName { get; set; } = "English";
|
|||
|
}
|