StaggerPost/Schedule.cs

10 lines
203 B
C#
Raw Normal View History

2025-03-16 11:33:45 -04:00
public class Schedule
{
[JsonPropertyName("topic")]
public string Topic { get; set; } = "";
[JsonPropertyName("times")]
public IList<string> Times { get; set; } = new List<string>();
}