mirror of
https://github.com/CyberL1/Minecraft-Realms-Emulator.git
synced 2025-04-02 14:08:36 -04:00
12 lines
450 B
C#
12 lines
450 B
C#
namespace Minecraft_Realms_Emulator.Shared.Helpers.Config
|
|
{
|
|
public class Settings
|
|
{
|
|
public string DefaultServerAddress { get; set; } = "127.0.0.1";
|
|
public string NewsLink { get; set; } = "https://github.com/CyberL1/Minecraft-Realms-Emulator";
|
|
public bool TrialMode { get; set; } = true;
|
|
public bool OnlineMode { get; set; } = false;
|
|
public bool AutomaticRealmsCreation { get; set; } = true;
|
|
}
|
|
}
|