예제 #1
0
 public ComboBoxItem(Tuple <ExploreQueueType, int, string> data)
 {
     this.type = data.Item1;
     this.id   = data.Item2;
     this.name = data.Item3;
 }
예제 #2
0
 public QueueChangeEventArgs(ExploreQueueType _type, int _name)
 {
     type = _type;
     name = _name;
 }