Files
radio-otherway/scheduler/Models/NotificationSchedule.cs
Fergal Moran 5f847732a4 Added files
2023-03-02 06:27:17 +00:00

6 lines
170 B
C#

namespace OtherWay.Radio.Scheduler.Models;
public class NotificationSchedule {
public string ShowId { get; set; }
public List<DateTime> ScheduleTimes { get; set; }
}