20 lines
432 B
C#
20 lines
432 B
C#
using System;
|
|
|
|
namespace Zhaizj.Framework.Common.AppBase {
|
|
|
|
/// <summary>
|
|
/// 注册用户的状态(待审核、删除、置顶、推荐、普通)
|
|
/// </summary>
|
|
public class MemberStatus {
|
|
|
|
public static readonly int Normal = 0;
|
|
public static readonly int Pick = 1;
|
|
public static readonly int Top = 2;
|
|
public static readonly int Approving = -2;
|
|
public static readonly int Deleted = -1;
|
|
|
|
}
|
|
|
|
}
|
|
|