Files
Yi.Admin/Yi.Furion.Net6/Yi.Furion.Core/Rbac/Dtos/Role/RoleAuthUserCreateOrDeleteInput.cs

19 lines
398 B
C#
Raw Normal View History

2023-05-23 19:29:56 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Yi.Framework.Infrastructure.Ddd.Dtos;
namespace Yi.Furion.Core.Rbac.Dtos.Role
{
public class RoleAuthUserCreateOrDeleteInput
{
[Required]
public long RoleId { get; set; }
[Required]
public List<long> UserIds { get; set; }
}
}