27 lines
800 B
C#
27 lines
800 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Mini.Model.ViewModel
|
|
{
|
|
public class Ww_exinfoShow
|
|
{
|
|
public string external_userid { get; set; }
|
|
public string name { get; set; }
|
|
public string remark { get; set; }
|
|
public string createtime { get; set; }
|
|
public string remark_mobiles { get; set; }
|
|
}
|
|
public class Ww_User_ExtuserShow
|
|
{
|
|
public string external_userid { get; set; }
|
|
public string name { get; set; }
|
|
public string remark { get; set; }
|
|
public string createtime { get; set; }
|
|
public string remark_mobiles { get; set; }
|
|
public DateTime? lmsgtime { get; set; }
|
|
public string avatar { get; set; }
|
|
public string corpid { get; set; }
|
|
}
|
|
}
|