using System;
using System.Collections.Generic;
namespace YD_Event.Core.Config;
public class BlogSetting
{
///
/// 网站Logo
///
public string Logo { get; set; }
///
/// 站点图标
///
public string Favicon { get; set; }
///
/// 开启打赏
///
public bool? IsRewards { get; set; }
///
/// 支付宝
///
public string AliPay { get; set; }
///
/// 微信收款码
///
public string WxPay { get; set; }
///
/// 允许留言
///
public bool? IsAllowMessage { get; set; }
///
/// 允许评论
///
public bool? IsAllowComments { get; set; }
///
/// 公告
///
public string Announcement { get; set; }
///
/// 站点名称
///
public string SiteName { get; set; }
///
/// 首页格言
///
public string Motto { get; set; }
///
/// 网站运营时间
///
public DateTime RunTime { get; set; }
///
/// 站点版权
///
public string Copyright { get; set; }
///
/// 站点描述
///
public string Description { get; set; }
///
/// 关键词
///
public string Keyword { get; set; }
///
/// 备案号
///
public string Filing { get; set; }
}