21 lines
668 B
C#
21 lines
668 B
C#
namespace AppletMvcService.Models
|
|
{
|
|
public class web_push_wxUserServiceModel
|
|
{
|
|
|
|
public string OpenId { get; set; }
|
|
public string NickName { get; set; }
|
|
public int Gender { get; set; }
|
|
public string City { get; set; }
|
|
public string Province { get; set; }
|
|
public string Country { get; set; }
|
|
|
|
public string Language { get; set; }
|
|
public string AvatarUrl { get; set; }
|
|
public string UnionId { get; set; }
|
|
public int Type { get; set; }
|
|
public string AccountNum { get; set; }
|
|
public long SubscribeTime { get; set; }
|
|
public int Subscribe { get; set; }
|
|
}
|
|
} |