20 lines
No EOL
620 B
C#
20 lines
No EOL
620 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
|
|
namespace WebsitePanel.WebDavPortal.UI.Routes
|
|
{
|
|
public class FileSystemRouteNames
|
|
{
|
|
public const string ShowContentPath = "ShowContentRoute";
|
|
public const string ShowOfficeOnlinePath = "ShowOfficeOnlineRoute";
|
|
public const string ShowAdditionalContent = "ShowAdditionalContentRoute";
|
|
|
|
public const string UploadFile = "UplaodFIleRoute";
|
|
|
|
public const string DeleteFiles = "DeleteFilesRoute";
|
|
|
|
public const string DownloadFile = "DownloadFileRoute";
|
|
}
|
|
} |