StaggerPost/Schedule.cs

13 lines
278 B
C#
Raw Permalink Normal View History

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