namespace PublishTimes;
///
/// Represents the configuration settings for exporting a schedule,
/// including file name, directory path, and available topics.
///
public class Config
{
///
/// Gets or sets the name of the schedule file.
///
public string? File { get; set; }
///
/// Gets or sets the directory path where the schedule file is stored.
///
public string? Path { get; set; }
///
/// Gets or sets the list of available topics from the configuration file.
///
public TomlArray? Topics { get; set; }
}