organization password settings added (without GPO)

This commit is contained in:
vfedosevich 2015-04-06 07:09:53 -07:00
parent e320b4c79e
commit 60214cdcf1
40 changed files with 2351 additions and 152 deletions

View file

@ -0,0 +1,9 @@
namespace WebsitePanel.Providers.HostedSolution
{
public class OrganizationSettingsEntity
{
public int ItemId { get; set; }
public string SettingsName { get; set; }
public string Xml { get; set; }
}
}