예제 #1
0
 public SettingChangeEventArgs(SettingChangeAction action, string key, object value)
 {
     this.Action = action;
     this.Key    = key;
     this.Value  = value;
 }
예제 #2
0
 public SettingChange(SettingChangeAction action, string?key, object?value)
 {
     this.Action = action;
     this.Key    = key;
     this.Value  = value;
 }
예제 #3
0
		public SettingChangeEventArgs(SettingChangeAction action, string key, object value) {
			this.Action = action;
			this.Key = key;
			this.Value = value;
		}