Exemple #1
0
 public Target(string id, string type, string source, Selector selector)
 {
     this.id = id;
     this.type = type;
     this.source = source;
     this.selector = selector;
 }
Exemple #2
0
 public Target(string type, string source, Selector selector)
 {
     this.id = Guid.NewGuid().ToString();
     this.type = type;
     this.source = source;
     this.selector = selector;
 }