webdav portal upload added

This commit is contained in:
vfedosevich 2015-02-19 05:21:17 -08:00
parent 51d432fd2e
commit 38bde37b18
105 changed files with 21145 additions and 105 deletions

View file

@ -0,0 +1,39 @@
using System;
namespace WebsitePanel.WebDavPortal.Models.FileSystem
{
public class UploadFileResult
{
private string _error;
public string error
{
get { return _error; }
set
{
if (!String.IsNullOrEmpty(value))
{
_error = value;
deleteUrl = String.Empty;
thumbnailUrl = String.Empty;
url = String.Empty;
}
}
}
public string name { get; set; }
public int size { get; set; }
public string type { get; set; }
public string url { get; set; }
public string deleteUrl { get; set; }
public string thumbnailUrl { get; set; }
public string deleteType { get; set; }
public string FullPath { get; set; }
public string SavedFileName { get; set; }
public string Title { get; set; }
}
}