mirror of
https://github.com/tonytins/staggerpost.git
synced 2025-07-06 06:40:32 -04:00
Documentation-style comments
This commit is contained in:
parent
85b2cda8e2
commit
aebe0c7040
2 changed files with 30 additions and 1 deletions
15
Config.cs
15
Config.cs
|
@ -1,8 +1,23 @@
|
|||
namespace PublishTimes;
|
||||
|
||||
/// <summary>
|
||||
/// Represents the configuration settings for exporting a schedule,
|
||||
/// including file name, directory path, and available topics.
|
||||
/// </summary>
|
||||
public class Config
|
||||
{
|
||||
/// <summary>
|
||||
/// Gets or sets the name of the schedule file.
|
||||
/// </summary>
|
||||
public string? File { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the directory path where the schedule file is stored.
|
||||
/// </summary>
|
||||
public string? Path { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the list of available topics from the configuration file.
|
||||
/// </summary>
|
||||
public TomlArray? Topics { get; set; }
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue