using System; using System.Collections.Generic; namespace schedulable { public enum LineType { text, manual, cmd, await_showtime } public class ProcessionLine { public string description { get; set; } public LineType type { get; set; } public string cmd { get; set; } public string args { get; set; } } }