Update.
This commit is contained in:
parent
5bf02402e0
commit
b95ab45e62
@ -10,7 +10,7 @@ namespace DiIiS_NA.REST
|
|||||||
public string IP { get { return this.GetString("IP", "127.0.0.1"); } set { this.Set("IP", value); } }
|
public string IP { get { return this.GetString("IP", "127.0.0.1"); } set { this.Set("IP", value); } }
|
||||||
public bool Public { get { return this.GetBoolean("Public", false); } set { this.Set("Public", value); } }
|
public bool Public { get { return this.GetBoolean("Public", false); } set { this.Set("Public", value); } }
|
||||||
public string PublicIP { get { return this.GetString("PublicIP", "0.0.0.0"); } set { this.Set("PublicIP", value); } }
|
public string PublicIP { get { return this.GetString("PublicIP", "0.0.0.0"); } set { this.Set("PublicIP", value); } }
|
||||||
public int PORT { get { return this.GetInt("PORT", 8081); } set { this.Set("PORT", value); } } //8081
|
public int Port { get { return this.GetInt("PORT", 8081); } set { this.Set("PORT", value); } } //8081
|
||||||
private static readonly Config _instance = new Config();
|
private static readonly Config _instance = new Config();
|
||||||
public static Config Instance { get { return _instance; } }
|
public static Config Instance { get { return _instance; } }
|
||||||
private Config() : base("REST") { }
|
private Config() : base("REST") { }
|
||||||
|
|||||||
Loading…
Reference in New Issue
user.block.title