1234567891011121314151617181920212223242526272829 |
- 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();
- }
- }
- }
|