30 lines
804 B
C#
30 lines
804 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Mini.Model.ViewModel
|
|
{
|
|
/// <summary>
|
|
/// 内部群
|
|
/// </summary>
|
|
public class Ww_OuterGroupModel
|
|
{
|
|
public string chat_id { get; set; }
|
|
public string corpid { get; set; }
|
|
public string name { get; set; }
|
|
public string owner { get; set; }
|
|
public string creatorname { get; set; }
|
|
public string notice { get; set; }
|
|
public long create_time { get; set; }
|
|
public string member_list { 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; }
|
|
|
|
}
|
|
}
|