Files

20 lines
406 B
C#
Raw Permalink Normal View History

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 ArticleConst
{
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 No_Permission = "该文章无权限";
2023-04-15 22:44:33 +08:00
}
}