wsp-10106: Implement Exchange Tenant Disclaimer.
This commit is contained in:
parent
eee5d732fb
commit
0ec87fc5f4
28 changed files with 11296 additions and 7215 deletions
|
@ -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; }
|
||||
}
|
||||
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue