director/schedulable/Schedulable.cs
Adam R. Grey c4d994f76b rework progress
todo: don't have containers, just have each line be "text" if you want
2021-10-13 09:25:03 -04:00

14 lines
365 B
C#

using System;
using System.Collections.Generic;
using director;
namespace schedulable
{
public class Schedulable
{
public TimeSpan LeadTimeDesired { get; set; }
public IEnumerable<string> AgentsNeeded { get; set; }
public IEnumerable<ProcessionLine> checklist { get; set; }
// public Object conductorConfig{get;set;}
}
}