17 lines
No EOL
647 B
C#
17 lines
No EOL
647 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; }
|
|
}
|
|
} |