13 lines
332 B
C#
13 lines
332 B
C#
namespace UtilLib
|
|
{
|
|
public class Userinfo
|
|
{
|
|
public string avatar { get; set; }
|
|
public int createdAt { get; set; }
|
|
public bool is_bind_wechat { get; set; }
|
|
public string nickname { get; set; }
|
|
public string phone { get; set; }
|
|
public string expiration { get; set; }
|
|
}
|
|
}
|