namespace ZhiYi.Core.Application.Dtos.Group { /// /// 创建组定义 /// public class GroupCreationDto { /// /// 账号ID /// public long UserId { get; set; } /// /// 组名 /// public string GroupName { get; set; } /// /// 创建人 /// public long CreateBy { get; set; } } }