Work item 175
Exchange Accepted Domain can be switched between Authoritative and InternalRelay
This commit is contained in:
parent
e1c7c4b18f
commit
7bc0cc88fa
18 changed files with 382 additions and 16 deletions
|
@ -26,6 +26,7 @@
|
|||
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
// SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
using System;
|
||||
namespace WebsitePanel.Providers.HostedSolution
|
||||
{
|
||||
public class OrganizationDomainName
|
||||
|
@ -33,6 +34,7 @@ namespace WebsitePanel.Providers.HostedSolution
|
|||
int organizationDomainId;
|
||||
int itemId;
|
||||
int domainId;
|
||||
int domainTypeId;
|
||||
string domainName;
|
||||
bool isHost;
|
||||
bool isDefault;
|
||||
|
@ -55,6 +57,21 @@ namespace WebsitePanel.Providers.HostedSolution
|
|||
set { domainId = value; }
|
||||
}
|
||||
|
||||
public int DomainTypeId
|
||||
{
|
||||
get { return domainTypeId; }
|
||||
set { domainTypeId = value; }
|
||||
}
|
||||
|
||||
public ExchangeAcceptedDomainType DomainType
|
||||
{
|
||||
get
|
||||
{
|
||||
ExchangeAcceptedDomainType type = (ExchangeAcceptedDomainType)domainTypeId;
|
||||
return type;
|
||||
}
|
||||
}
|
||||
|
||||
public int OrganizationDomainId
|
||||
{
|
||||
get { return organizationDomainId; }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue