mirror of
https://github.com/tonytins/PublishTimes.git
synced 2025-03-14 20:01:20 +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; }
|
|
}
|