mirror of
https://github.com/tonytins/PublishTimes.git
synced 2025-03-15 04:01:20 +00:00
9 lines
168 B
C#
9 lines
168 B
C#
|
namespace PublishTimes;
|
||
|
|
||
|
public class Config
|
||
|
{
|
||
|
public string? File { get; set; }
|
||
|
public string? Path { get; set; }
|
||
|
public TomlArray? Topics { get; set; }
|
||
|
}
|