feat: 添加bbs等级及用户限制功能
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user