webdav portal mobile view added, content type counted

This commit is contained in:
vfedosevich 2015-02-25 02:36:39 -08:00
parent 4122caa16d
commit 346059195e
13 changed files with 111 additions and 41 deletions

View file

@ -6,11 +6,13 @@ namespace WebsitePanel.WebDavPortal.Models
{
public string Url { get; set; }
public string FileName { get; set; }
public string Backurl { get; set; }
public OfficeOnlineModel(string url, string fileName)
public OfficeOnlineModel(string url, string fileName, string backUrl)
{
Url = url;
FileName = fileName;
Backurl = backUrl;
}
}
}