21 lines
467 B
C#
21 lines
467 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Mini.Model.ViewModel
|
|
{
|
|
/// <summary>
|
|
/// 获取工作微信的头像类
|
|
/// </summary>
|
|
public class thumb_avatar_Model
|
|
{
|
|
/// <summary>
|
|
/// 头像高清图
|
|
/// </summary>
|
|
public string avatar { get; set; }
|
|
/// <summary>
|
|
/// 头像缩略图
|
|
/// </summary>
|
|
public string thumb_avatar { get; set; }
|
|
}
|
|
} |