Esempio n. 1
0
 public Script(IEnumerable <Command> commands, VisitTarget.VisitTypes visit = VisitTarget.VisitTypes.None)
 {
     Visit = new VisitTarget()
     {
         VisitType = visit
     };
     CommandList.AddRange(commands);
 }
Esempio n. 2
0
 public VisitTarget(VisitTarget other)
 {
     ItemID    = other.ItemID;
     VisitType = other.VisitType;
 }