add new functionallity "Additional Default Groups"

This commit is contained in:
vfedosevich 2013-10-17 16:09:28 +03:00
parent b56981b1a6
commit 9d5e559604
22 changed files with 913 additions and 279 deletions

View file

@ -0,0 +1,20 @@
namespace WebsitePanel.EnterpriseServer.Base.HostedSolution
{
public class AdditionalGroup
{
int groupId;
string groupName;
public int GroupId
{
get { return this.groupId; }
set { this.groupId = value; }
}
public string GroupName
{
get { return this.groupName; }
set { this.groupName = value; }
}
}
}