using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace CB.Entity
{
public class UpLoadMessageInfo
{
///
/// 返回状态码
///
public int error { get; set; }
///
/// 返回的错误信息
///
public string message { get; set; }
///
/// 图片地址
///
public string url { get; set; }
///
/// 略缩图1
///
public string album1 { get; set; }
///
/// 略缩图2
///
public string album2 { get; set; }
}
///
/// 文章的缩略图上传返回的实体类或彩票站点实景展示使用
///
public class UpLoadTopicMessageInfo
{
///
/// 返回状态码
///
public int error { get; set; }
///
/// 返回的错误信息
///
public string message { get; set; }
public string thumbsURL { get; set; }
public string thumbsSize { get; set; }
public string FileName { get; set; }
public string FilteType { get; set; }
public string FileSize { get; set; }
public string FileUrl { get; set; }
}
}