24 lines
585 B
C#
24 lines
585 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
|
|
namespace SuperMap.RealEstate.HousingSecurity.APIPlugs.flashuploader
|
|
{
|
|
/// <summary>
|
|
/// 仅用于flash图片上传的返回对象
|
|
/// </summary>
|
|
public class FlashUpJsonInfo
|
|
{
|
|
public string state { get; set; }
|
|
public string msg { get; set; }
|
|
|
|
public string url { get; set; }
|
|
//public string sUrl { get; set; }
|
|
public string title { get; set; }
|
|
public string original { get; set; }
|
|
|
|
public int fid { get; set; }
|
|
|
|
}
|
|
} |