Beispiel #1
0
 public Action(Provider.Actions type, Mode.ModeEnum payload)
 {
     this.Type            = type;
     this.PayloadModeEnum = payload;
 }
Beispiel #2
0
 public Action(Provider.Actions type, int payload)
 {
     this.Type       = type;
     this.PayloadInt = payload;
 }
Beispiel #3
0
 public Action(Provider.Actions type)
 {
     this.Type = type;
 }
Beispiel #4
0
 public Action(Provider.Actions type, bool payload)
 {
     this.Type        = type;
     this.PayloadBool = payload;
 }
Beispiel #5
0
 public Action(Provider.Actions type, string payload)
 {
     this.Type          = type;
     this.PayloadString = payload;
 }