using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations.Schema; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Text; using System.Threading.Tasks; namespace YD_WeChatApplet.Commons.Dto.ClientSide { /// /// 创建群组 /// public class CreateUserGruopDto { /// ///群组名称 /// public string GroupName { get; set; } } }