using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Yi.Framework.Bbs.Domain.Shared.Consts
{
///
/// 常量定义
///
public class DiscussConst
{
public const string No_Exist = "传入的主题id不存在";
public const string Privacy = "【私密】您无该主题权限,可联系作者申请开放";
public const string AgreeNotice = """
🍗 您的主题 [{0}] 有 [{1}] 用户点赞!
""";
public const string CommentNotice = """
🍖 您的主题 [{0}] 有 [{1}] 用户评论!
""";
public const string CommentNoticeToReply = """
🍖 您在主题 [{0}] 的评论有 [{1}] 用户回复!
""";
}
}