14 lines
302 B
C#
14 lines
302 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Yi.Framework.Rbac.Application.Contracts.Dtos.Role
|
|
{
|
|
public class RoleAuthUserCreateOrDeleteInput
|
|
{
|
|
[Required]
|
|
public Guid RoleId { get; set; }
|
|
|
|
[Required]
|
|
public List<Guid> UserIds { get; set; }
|
|
}
|
|
}
|