1
0
mirror of https://github.com/Ylianst/MeshCentralRouter synced 2026-01-01 07:53:14 +00:00

Added settings for device visilibity and sorting.

This commit is contained in:
Ylian Saint-Hilaire
2020-03-25 20:26:11 -07:00
parent 6840b9018b
commit 9ecafc5af2
6 changed files with 195 additions and 132 deletions

View File

@@ -22,77 +22,5 @@ namespace MeshCentralRouter.Properties {
return defaultInstance;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("0")]
public int ViewType {
get {
return ((int)(this["ViewType"]));
}
set {
this["ViewType"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("1")]
public int GraphType {
get {
return ((int)(this["GraphType"]));
}
set {
this["GraphType"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("True")]
public bool ShowHiddenNodes {
get {
return ((bool)(this["ShowHiddenNodes"]));
}
set {
this["ShowHiddenNodes"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("")]
public string ServerCertHash {
get {
return ((string)(this["ServerCertHash"]));
}
set {
this["ServerCertHash"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("False")]
public bool AllowsAgentDownloads {
get {
return ((bool)(this["AllowsAgentDownloads"]));
}
set {
this["AllowsAgentDownloads"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("False")]
public bool AllowsAgentUploads {
get {
return ((bool)(this["AllowsAgentUploads"]));
}
set {
this["AllowsAgentUploads"] = value;
}
}
}
}