mirror of
https://github.com/tonytins/staggerpost.git
synced 2025-07-06 06:40:32 -04:00
Moved source code to /src
This commit is contained in:
parent
9d7f6b9f66
commit
1c610fe6b0
10 changed files with 0 additions and 0 deletions
24
Config.cs
24
Config.cs
|
@ -1,24 +0,0 @@
|
|||
// I hereby waive this project under the public domain - see UNLICENSE for details.
|
||||
namespace StaggerPost;
|
||||
|
||||
/// <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 List<string> Communities { get; set; } = new List<string>();
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue