websitepanel/WebsitePanel/Sources/WebsitePanel.Providers.Base/ExchangeHostedEdition/ExchangeOrganizationDomain.cs
2011-07-13 16:07:32 -07:00

14 lines
371 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace WebsitePanel.Providers.ExchangeHostedEdition
{
public class ExchangeOrganizationDomain
{
public string Identity { get; set; }
public string Name { get; set; }
public bool IsDefault { get; set; }
public bool IsTemp { get; set; }
}
}