13 lines
230 B
C#
13 lines
230 B
C#
using System;
|
|
|
|
namespace Zhaizj.Framework.Common.AppBase {
|
|
|
|
/// <summary>
|
|
/// 系统推荐状态(当前只推荐一种状态)
|
|
/// </summary>
|
|
public class SystemPickStatus {
|
|
public static readonly int Picked = 0;
|
|
}
|
|
|
|
}
|