director/schedulable/Checklist.cs

14 lines
359 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
namespace schedulable
{
2021-10-26 07:36:25 -04:00
public enum LineType { text, manual, cmd, await_showtime }
public class ProcessionLine
{
public string description { get; set; }
2021-10-26 07:36:25 -04:00
public LineType type { get; set; }
public string cmd { get; set; }
2021-12-04 04:19:53 -05:00
public List<string> args { get; set; }
}
}