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 UserGruopDto { /// /// 群组Id /// public int GroupId { get; set; } /// ///群组名称 /// public string GroupName { get; set; } /// /// 群成员个数 /// public int MemberCount { get; set; } } }