Lync user plans aligned with Exchange mailbox plans
This commit is contained in:
parent
0ecd34363a
commit
260e981140
17 changed files with 921 additions and 260 deletions
|
@ -35,6 +35,7 @@ namespace WebsitePanel.Providers.HostedSolution
|
|||
public class LyncUserPlan
|
||||
{
|
||||
int lyncUserPlanId;
|
||||
int itemId;
|
||||
string lyncUserPlanName;
|
||||
|
||||
bool im;
|
||||
|
@ -44,9 +45,16 @@ namespace WebsitePanel.Providers.HostedSolution
|
|||
bool mobility;
|
||||
bool mobilityEnableOutsideVoice;
|
||||
LyncVoicePolicyType voicePolicy;
|
||||
int lyncUserPlanType;
|
||||
|
||||
bool isDefault;
|
||||
|
||||
public int ItemId
|
||||
{
|
||||
get { return this.itemId; }
|
||||
set { this.itemId = value; }
|
||||
}
|
||||
|
||||
public int LyncUserPlanId
|
||||
{
|
||||
get { return this.lyncUserPlanId; }
|
||||
|
@ -59,6 +67,13 @@ namespace WebsitePanel.Providers.HostedSolution
|
|||
set { this.lyncUserPlanName = value; }
|
||||
}
|
||||
|
||||
public int LyncUserPlanType
|
||||
{
|
||||
get { return this.lyncUserPlanType; }
|
||||
set { this.lyncUserPlanType = value; }
|
||||
}
|
||||
|
||||
|
||||
public bool IM
|
||||
{
|
||||
get { return this.im; }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue