add default group for creating enterprise folder
save enterprise settings for enterprise folder
This commit is contained in:
parent
329e9c10fe
commit
878f67013e
17 changed files with 491 additions and 174 deletions
|
@ -0,0 +1,28 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace WebsitePanel.Providers.Web
|
||||
{
|
||||
public class WebDavSetting
|
||||
{
|
||||
public string LocationDrive { get; set; }
|
||||
public string HomeFolder { get; set; }
|
||||
public string Domain { get; set; }
|
||||
|
||||
public WebDavSetting() { }
|
||||
|
||||
public WebDavSetting(string locationDrive, string homeFolder, string domain)
|
||||
{
|
||||
LocationDrive = locationDrive;
|
||||
HomeFolder = homeFolder;
|
||||
Domain = domain;
|
||||
}
|
||||
|
||||
public bool IsEmpty()
|
||||
{
|
||||
return string.IsNullOrEmpty(LocationDrive) && string.IsNullOrEmpty(HomeFolder) && string.IsNullOrEmpty(Domain);
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue