using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AirWheel.Cycling.Entity.ResponseMod
{
public class UpAvatar
{
///
///
///
public int picwidth { get; set; }
///
///
///
public int picheight { get; set; }
///
///
///
public string picurl { get; set; }
///
///
///
public string fullpicurl { get; set; }
}
///
/// 用户上传头像
///
public class ResponseUpAvatar
{
///
///
///
public UpAvatar data { get; set; }
///
///
///
public string status { get; set; }
}
}