using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace PCRobot.Entitys.Enterprise { public class CreateGroupInfo { /// /// 创建者账号 /// public string CreateUserName { get; set; } /// /// 群id /// public string GroupId { get; set; } /// /// 群昵称 /// public string GroupNick { get; set; } /// /// 创建时间 /// public long CreateTime { get; set; } } }