Slight refactor

- Config model
- Wrapped the generation and printing code into functions
- Can now start over
- Starting over or exiting will clear screen
This commit is contained in:
Tony Bark 2025-03-12 14:28:36 -04:00
parent 8cf1e917f6
commit 85b2cda8e2
3 changed files with 58 additions and 26 deletions

8
Config.cs Normal file
View file

@ -0,0 +1,8 @@
namespace PublishTimes;
public class Config
{
public string? File { get; set; }
public string? Path { get; set; }
public TomlArray? Topics { get; set; }
}