18 lines
401 B
C#
18 lines
401 B
C#
using System;
|
|
namespace Zhaizj.Framework.Common.AppBase {
|
|
|
|
/// <summary>
|
|
/// 关于是否可评论的枚举状态(允许、关闭、登录用户、好友)
|
|
/// </summary>
|
|
public class CommentCondition {
|
|
|
|
public static readonly int AllowAll = 0;
|
|
public static readonly int Close = 1;
|
|
public static readonly int LoginUser = 2;
|
|
public static readonly int Friend = 3;
|
|
|
|
}
|
|
|
|
}
|
|
|