websitepanel/WebsitePanel/Sources/WebsitePanel.EnterpriseServer.Base/HostedSolution/ESPermission.cs
2013-11-04 18:07:47 +03:00

32 lines
671 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace WebsitePanel.EnterpriseServer.Base.HostedSolution
{
public class ESPermission
{
string account;
string access;
bool isGroup;
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; }
}
}
}