init lserp cs 5.0

This commit is contained in:
cyf
2026-07-10 15:25:05 +08:00
commit 90f3fda86a
3799 changed files with 976868 additions and 0 deletions
@@ -0,0 +1,17 @@
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;
}
}