20 lines
406 B
C#
20 lines
406 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Yi.Framework.Bbs.Domain.Shared.Consts
|
|
{
|
|
/// <summary>
|
|
/// 常量定义
|
|
/// </summary>
|
|
|
|
public class ArticleConst
|
|
{
|
|
public const string No_Exist = "传入的文章id不存在";
|
|
|
|
public const string No_Permission = "该文章无权限";
|
|
}
|
|
}
|