10 lines
233 B
C#
10 lines
233 B
C#
namespace TaikoLocalServer.Settings;
|
|
|
|
public class ServerSettings
|
|
{
|
|
public string MuchaUrl { get; set; } = string.Empty;
|
|
|
|
public string GameUrl { get; set; } = string.Empty;
|
|
|
|
public bool EnableMoreSongs { get; set; }
|
|
} |