PublishTimes/Config.cs
Tony Bark 85b2cda8e2 Slight refactor
- Config model
- Wrapped the generation and printing code into functions
- Can now start over
- Starting over or exiting will clear screen
2025-03-12 14:28:36 -04:00

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; }
}