director/schedulable/Checklist.cs

14 lines
359 B
C#

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 List<string> args { get; set; }
}
}