using System; using System.Collections.Generic; using System.Text; namespace Mini.Model.ViewModel { /// /// 内部群 /// public class Ww_InnerGroupModel { public string roomid { get; set; } public string corpid { get; set; } public string roomname { get; set; } public string creator { get; set; } public string creatorname { get; set; } public string notice { get; set; } public long room_create_time { get; set; } public string members { get; set; } public int membernum { get; set; } public DateTime? ctime { get; set; } public DateTime? ltimeupdate { get; set; } public string ltimeupdatestr { get; set; } public string createtime { get; set; } } }