2023-04-15 22:44:33 +08:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
2023-12-11 09:55:12 +08:00
|
|
|
|
namespace Yi.Framework.Bbs.Domain.Shared.Consts
|
2023-04-15 22:44:33 +08:00
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 常量定义
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public class DiscussConst
|
|
|
|
|
|
{
|
2024-10-04 00:00:44 +08:00
|
|
|
|
public const string Repeat = "创建主题重复";
|
2023-10-04 23:16:07 +08:00
|
|
|
|
public const string No_Exist = "传入的主题id不存在";
|
2023-04-15 22:44:33 +08:00
|
|
|
|
|
2023-10-04 23:16:07 +08:00
|
|
|
|
public const string Privacy = "【私密】您无该主题权限,可联系作者申请开放";
|
2024-05-23 23:40:55 +08:00
|
|
|
|
|
2024-08-07 00:01:44 +08:00
|
|
|
|
public const string AgreeNotice = """
|
|
|
|
|
|
<div>
|
2024-08-07 11:12:01 +08:00
|
|
|
|
<h3 class="title" style="color: #333; font-size: 18px; margin: 0 0 10px;">🍗 您的主题 [<a href="/article/{2}" target="_blank" style="color: #007BFF;text-decoration: none;">{0}</a>] 有 [{1}] 用户点赞!</h3>
|
2024-08-07 00:01:44 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
""";
|
2024-08-07 11:12:01 +08:00
|
|
|
|
|
2024-08-07 00:01:44 +08:00
|
|
|
|
public const string CommentNotice = """
|
2024-08-07 11:12:01 +08:00
|
|
|
|
<div>
|
|
|
|
|
|
<h3 class="title" style="color: #333; font-size: 18px; margin: 0 0 10px;">🍖 您的主题 [<a href="/article/{3}" target="_blank" style="color: #007BFF;text-decoration: none;">{0}</a>] 有 [{1}] 用户评论!</h3>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
""";
|
|
|
|
|
|
|
|
|
|
|
|
public const string CommentNoticeToReply = """
|
|
|
|
|
|
<div>
|
|
|
|
|
|
<h3 class="title" style="color: #333; font-size: 18px; margin: 0 0 10px;">🍖 您在主题 [<a href="/article/{3}" target="_blank" style="color: #007BFF;text-decoration: none;">{0}</a>] 的评论有 [{1}] 用户回复!</h3>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
""";
|
2023-04-15 22:44:33 +08:00
|
|
|
|
}
|
2024-08-07 11:12:01 +08:00
|
|
|
|
}
|