30 lines
810 B
C#
30 lines
810 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Mini.Model.ViewModel
|
|
{
|
|
/// <summary>
|
|
/// 内部群
|
|
/// </summary>
|
|
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; }
|
|
|
|
}
|
|
}
|