1
0
mirror of https://git.teknik.io/Teknikode/Teknik.git synced 2023-08-02 14:16:22 +02:00
Teknik/Utilities/Configuration/BlogConfig.cs

32 lines
760 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace Teknik.Configuration
{
public class BlogConfig
{
public bool Enabled { get; set; }
public string Title { get; set; }
public string Description { get; set; }
public int PostsToLoad { get; set; }
public int CommentsToLoad { get; set; }
public int ServerBlogId { get; set; }
public BlogConfig()
{
SetDefaults();
}
public void SetDefaults()
{
Enabled = true;
Title = string.Empty;
Description = string.Empty;
PostsToLoad = 10;
CommentsToLoad = 10;
ServerBlogId = 1;
}
}
}