Mini.Crm/Mini.Model/ViewModel/Ww_Groupchat_Member.cs

16 lines
325 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Mini.Model.ViewModel
{
public class Ww_Groupchat_Member
{
public string userid { get; set; }
public int type { get; set; }
public long join_time { get; set; }
public int join_scene { get; set; }
}
}