18 lines
No EOL
703 B
C#
18 lines
No EOL
703 B
C#
using WebsitePanel.WebDav.Core.Config.Entities;
|
|
|
|
namespace WebsitePanel.WebDav.Core.Config
|
|
{
|
|
public interface IWebDavAppConfig
|
|
{
|
|
string UserDomain { get; }
|
|
string ApplicationName { get; }
|
|
ElementsRendering ElementsRendering { get; }
|
|
WebsitePanelConstantUserParameters WebsitePanelConstantUserParameters { get; }
|
|
SessionKeysCollection SessionKeys { get; }
|
|
FileIconsDictionary FileIcons { get; }
|
|
HttpErrorsCollection HttpErrors { get; }
|
|
OfficeOnlineCollection OfficeOnline { get; }
|
|
OwaSupportedBrowsersCollection OwaSupportedBrowsers { get; }
|
|
FilesToIgnoreCollection FilesToIgnore { get; }
|
|
}
|
|
} |