Files
Yi.Admin/Yi.Framework.Net6/Yi.Framework.DTOModel/Base/Dto/GiveUserSetRoleDto.cs

15 lines
311 B
C#
Raw Normal View History

2022-04-26 01:31:14 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
2023-01-02 14:29:16 +08:00
namespace Yi.Framework.DtoModel.Base.Dto
2022-04-26 01:31:14 +08:00
{
public class GiveUserSetRoleDto
{
2023-01-05 20:32:58 +08:00
public List<long>? UserIds { get; set; }
public List<long>? RoleIds { get; set; }
2022-04-26 01:31:14 +08:00
}
}