websitepanel/WebsitePanel/Sources/WebsitePanel.WebDavPortal/Models/FileSystem/UploadFileResult.cs
2015-02-19 05:21:17 -08:00

39 lines
No EOL
1,019 B
C#

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; }
}
}