mirror of
https://github.com/CyberL1/Minecraft-Realms-Emulator.git
synced 2025-04-05 15:38:36 -04:00
13 lines
441 B
C#
13 lines
441 B
C#
using Minecraft_Realms_Emulator.Enums;
|
|
|
|
namespace Minecraft_Realms_Emulator.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 string WorkMode { get; set; } = nameof(WorkModeEnum.EXTERNAL);
|
|
}
|
|
}
|