websitepanel/WebsitePanel/Sources/WebsitePanel.Providers.Base/HostedSolution/OrganizationSecurityGroup.cs
vfedosevich 3fc3a425e0 Remove "managedBy" functionality for security groups and fix bug with
organization naming when create organization user (when Append Org ID)
2013-08-26 14:33:09 +03:00

46 lines
No EOL
783 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace WebsitePanel.Providers.HostedSolution
{
public class OrganizationSecurityGroup
{
public string DisplayName
{
get;
set;
}
public string AccountName
{
get;
set;
}
public OrganizationUser[] MembersAccounts
{
get;
set;
}
public string Notes
{
get;
set;
}
public string SAMAccountName
{
get;
set;
}
public bool IsDefault
{
get;
set;
}
}
}