You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
386 B
C#

using System.ComponentModel.DataAnnotations;
namespace DS.WMS.Core.System.Dtos;
/// <summary>
///
/// </summary>
public class RolePermissionInput
{
/// <summary>
///
/// </summary>
[Required(ErrorMessage = "角色Id不能为空")]
public string RoleId { get; set; }
/// <summary>
///
/// </summary>
public string[] PermissionIds { get; set; }
}