wsp-10106: Implement Exchange Tenant Disclaimer.

This commit is contained in:
dev_amdtel 2013-06-25 22:09:35 +04:00
parent eee5d732fb
commit 0ec87fc5f4
28 changed files with 11296 additions and 7215 deletions

View file

@ -0,0 +1,39 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace WebsitePanel.Providers.HostedSolution
{
public class ExchangeDisclaimer
{
int exchangeDisclaimerId;
int itemId;
string disclaimerName;
string disclaimerText;
public int ItemId
{
get { return this.itemId; }
set { this.itemId = value; }
}
public int ExchangeDisclaimerId
{
get { return this.exchangeDisclaimerId; }
set { this.exchangeDisclaimerId = value; }
}
public string DisclaimerName
{
get { return this.disclaimerName; }
set { this.disclaimerName = value; }
}
public string DisclaimerText
{
get { return this.disclaimerText; }
set { this.disclaimerText = value; }
}
}
}