18 lines
332 B
C#
18 lines
332 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Yi.Furion.Core.Bbs.Consts
|
|
{
|
|
/// <summary>
|
|
/// 常量定义
|
|
/// </summary>
|
|
|
|
public class PlateConst
|
|
{
|
|
public const string 板块不存在 = "传入的板块id不存在";
|
|
}
|
|
}
|