mirror of
https://github.com/tonytins/StaggerPost.git
synced 2025-03-19 03:51:21 +00:00
- Config model - Wrapped the generation and printing code into functions - Can now start over - Starting over or exiting will clear screen
8 lines
168 B
C#
8 lines
168 B
C#
namespace PublishTimes;
|
|
|
|
public class Config
|
|
{
|
|
public string? File { get; set; }
|
|
public string? Path { get; set; }
|
|
public TomlArray? Topics { get; set; }
|
|
}
|