mirror of
https://git.teknik.io/Teknikode/Teknik.git
synced 2023-08-02 14:16:22 +02:00
29 lines
745 B
C#
29 lines
745 B
C#
using System.IO;
|
|
|
|
namespace Teknik.Configuration
|
|
{
|
|
public class PodcastConfig
|
|
{
|
|
public bool Enabled { get; set; }
|
|
public string Title { get; set; }
|
|
public string Description { get; set; }
|
|
public int PodcastsToLoad { get; set; }
|
|
public int CommentsToLoad { get; set; }
|
|
public string PodcastDirectory { get; set; }
|
|
|
|
public PodcastConfig()
|
|
{
|
|
SetDefaults();
|
|
}
|
|
|
|
public void SetDefaults()
|
|
{
|
|
Enabled = true;
|
|
Title = string.Empty;
|
|
Description = string.Empty;
|
|
PodcastsToLoad = 10;
|
|
CommentsToLoad = 10;
|
|
PodcastDirectory = Directory.GetCurrentDirectory();
|
|
}
|
|
}
|
|
} |