merge commit
This commit is contained in:
commit
c29f565c0b
50 changed files with 1307 additions and 822 deletions
|
@ -39,7 +39,8 @@ namespace WebsitePanel.Providers.HostedSolution
|
|||
Equipment = 6,
|
||||
User = 7,
|
||||
SecurityGroup = 8,
|
||||
DefaultSecurityGroup = 9
|
||||
|
||||
DefaultSecurityGroup = 9,
|
||||
SharedMailbox = 10,
|
||||
ResourceMailbox = 11
|
||||
}
|
||||
}
|
||||
|
|
|
@ -341,6 +341,36 @@ namespace WebsitePanel.Providers.HostedSolution
|
|||
get { return usedArchingStorage; }
|
||||
set { usedArchingStorage = value; }
|
||||
}
|
||||
|
||||
int allocatedSharedMailboxes;
|
||||
public int AllocatedSharedMailboxes
|
||||
{
|
||||
get { return allocatedSharedMailboxes; }
|
||||
set { allocatedSharedMailboxes = value; }
|
||||
}
|
||||
|
||||
int createdSharedMailboxes;
|
||||
public int CreatedSharedMailboxes
|
||||
{
|
||||
get { return createdSharedMailboxes; }
|
||||
set { createdSharedMailboxes = value; }
|
||||
}
|
||||
|
||||
int allocatedResourceMailboxes;
|
||||
public int AllocatedResourceMailboxes
|
||||
{
|
||||
get { return allocatedResourceMailboxes; }
|
||||
set { allocatedResourceMailboxes = value; }
|
||||
}
|
||||
|
||||
int createdResourceMailboxes;
|
||||
public int CreatedResourceMailboxes
|
||||
{
|
||||
get { return createdResourceMailboxes; }
|
||||
set { createdResourceMailboxes = value; }
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -0,0 +1,13 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace WebsitePanel.Providers.RemoteDesktopServices
|
||||
{
|
||||
public enum RdsPolicyTypes
|
||||
{
|
||||
RdCap,
|
||||
RdRap
|
||||
}
|
||||
}
|
|
@ -125,6 +125,7 @@
|
|||
<Compile Include="RemoteDesktopServices\IRemoteDesktopServices.cs" />
|
||||
<Compile Include="RemoteDesktopServices\RdsCollection.cs" />
|
||||
<Compile Include="RemoteDesktopServices\RdsCollectionPaged.cs" />
|
||||
<Compile Include="RemoteDesktopServices\RdsPolicyTypes.cs" />
|
||||
<Compile Include="RemoteDesktopServices\RdsServer.cs" />
|
||||
<Compile Include="RemoteDesktopServices\RdsServersPaged.cs" />
|
||||
<Compile Include="RemoteDesktopServices\RemoteApplication.cs" />
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue