19 lines
387 B
C#
19 lines
387 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Blog3000.Client
|
|
{
|
|
public class MainConfig
|
|
{
|
|
public string Title { get; set; }
|
|
|
|
public string DefaultMailAddress { get; set; }
|
|
|
|
public string[] TopTopics { get; set; }
|
|
|
|
public Dictionary<string, string> SocialLinks { get; set; }
|
|
}
|
|
}
|