using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Model
{
public class SaveOnlineFileItem
{
///
///
///
public string md5
{
get;
set;
}
///
///
///
public string expires
{
get;
set;
}
///
///
///
public string disposition
{
get;
set;
}
///
/// 文件名称
///
public string filename
{
get;
set;
}
///
/// 保存路径
///
public string PCUrl
{
get;
set;
}
///
/// 文件路径
///
public string UrlStr
{
get;
set;
}
}
}