mirror of
https://github.com/tonytins/StaggerPost.git
synced 2025-03-19 03:51:21 +00:00
10 lines
203 B
C#
10 lines
203 B
C#
|
|
||
|
public class Schedule
|
||
|
{
|
||
|
[JsonPropertyName("topic")]
|
||
|
public string Topic { get; set; } = "";
|
||
|
|
||
|
[JsonPropertyName("times")]
|
||
|
public IList<string> Times { get; set; } = new List<string>();
|
||
|
}
|