using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace iWareDataCore.WebDav.Entity
{
///
/// 文件上传到webdav后的信息
///
public class FileInfo
{
///
/// 在服务器中的真实地址
///
public string PathOnServer { get; set; }
///
/// 原始文件名
///
public string OriginalFileName { get; set; }
///
/// 构造函数
///
/// 在服务器中的真实地址
/// 原始文件名
public FileInfo(string pathOnServer,string originalFileName)
{
this.PathOnServer = pathOnServer;
this.OriginalFileName = originalFileName;
}
}
}