0
0

PkgSetPkgPermissionsInput.cs 365 B

12345678910111213
  1. using System.Collections.Generic;
  2. using System.ComponentModel.DataAnnotations;
  3. namespace ZhonTai.Admin.Services.Pkg.Dto;
  4. public class PkgSetPkgPermissionsInput
  5. {
  6. [Required(ErrorMessage = "套餐不能为空!")]
  7. public long PkgId { get; set; }
  8. [Required(ErrorMessage = "权限不能为空!")]
  9. public List<long> PermissionIds { get; set; }
  10. }