using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace LD31 { public class Script { public string target = ""; //No target - indicates target for combination scripts public string name = ""; //No name - indicates name for named scripts public List commandLines = new List(); } }