StaggerPost/Schedule.cs
Tony Bark 349f5e0ff9 Simple date selection
Thanks to switching to JSON, I can finally add date selection.
2025-03-16 17:19:54 -04:00

12 lines
278 B
C#

public class Schedule
{
[JsonPropertyName("topic")]
public string Topic { get; set; } = "";
[JsonPropertyName("date")]
public string Date { get; set; } = "";
[JsonPropertyName("times")]
public IList<string> Times { get; set; } = new List<string>();
}