19 lines
398 B
C#
19 lines
398 B
C#
|
namespace ZhiYi.Core.Application.Dtos.Group
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 批量导入分组定义
|
|||
|
/// </summary>
|
|||
|
public class GroupCreationBatchDto
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 分组ID列表
|
|||
|
/// </summary>
|
|||
|
public long[] Ids { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 当前账号ID
|
|||
|
/// </summary>
|
|||
|
public long UserId { get; set; }
|
|||
|
}
|
|||
|
}
|