director/DirectorConfiguration/ConfigFileLocator.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

13 lines
320 B
C#

using System;
using System.Collections.Generic;
using System.Text.RegularExpressions;
namespace DirectorConfiguration
{
public class ConfigFileLocator
{
public string Calendar { get; set; }
public Regex EventName { get; set; }
public string SchedulableConfiguration { get; set; }
}
}