websitepanel/WebsitePanel/Sources/WebsitePanel.EnterpriseServer.Base/HostedSolution/ESPermission.cs
2013-11-05 17:54:40 +03:00

40 lines
837 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace WebsitePanel.EnterpriseServer.Base.HostedSolution
{
public class ESPermission
{
string displayName;
string account;
string access;
bool isGroup;
public string DisplayName
{
get { return displayName; }
set { displayName = value; }
}
public string Account
{
get { return account; }
set { account = value; }
}
public string Access
{
get { return access; }
set { access = value; }
}
public bool IsGroup
{
get { return isGroup; }
set { isGroup = value; }
}
}
}