mirror of
https://github.com/tonytins/staggerpost.git
synced 2025-03-25 02:39:12 +00:00
- Cleaned up Program.cs by moving a lot of functions to their own classes - Renamed topics to community - Choosing a community is no longer optional with the switch to JSON - Added csharpier tool and reformttered all code
11 lines
267 B
C#
11 lines
267 B
C#
public class Schedule
|
|
{
|
|
[JsonPropertyName("community")]
|
|
public string Community { get; set; } = "";
|
|
|
|
[JsonPropertyName("date")]
|
|
public string Date { get; set; } = "";
|
|
|
|
[JsonPropertyName("times")]
|
|
public IList<string> Times { get; set; } = new List<string>();
|
|
}
|