29 lines
770 B
C#
29 lines
770 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Mini.Model.Map
|
|
{
|
|
public class ww_exinfo
|
|
{
|
|
public external external_contact { get; set; }
|
|
public List<follow> follow_user { get; set; }
|
|
public follow self { get; set; }
|
|
}
|
|
public class external
|
|
{
|
|
public string external_userid { get; set; }
|
|
public string name { get; set; }
|
|
public string type { get; set; }
|
|
}
|
|
public class follow
|
|
{
|
|
public string userid { get; set; }
|
|
public string remark { get; set; }
|
|
public string description { get; set; }
|
|
public long ? createtime { get; set; }
|
|
public object remark_mobiles { get; set; }
|
|
public object tags { get; set; }
|
|
}
|
|
}
|