feat: 添加bbs等级及用户限制功能

This commit is contained in:
陈淳
2023-12-22 15:51:18 +08:00
parent c5cfa2f143
commit 4ace93bff3
11 changed files with 213 additions and 10 deletions

View File

@@ -0,0 +1,20 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Yi.Framework.Rbac.Domain.Shared.Etos
{
/// <summary>
/// 用户创建的id
/// </summary>
public class UserCreateEventArgs
{
public UserCreateEventArgs(Guid userId)
{
UserId = userId;
}
public Guid UserId { get; set; }
}
}