mirror of
https://github.com/tonytins/StaggerPost.git
synced 2025-03-17 19:21:21 +00:00
12 lines
278 B
C#
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>();
|
|
}
|