24 lines
821 B
C#
24 lines
821 B
C#
//
|
|
// <copyright file="UIConstants.cs" company="Microsoft">
|
|
// Copyright (C) Microsoft. All rights reserved.
|
|
// </copyright>
|
|
//
|
|
|
|
using System;
|
|
|
|
namespace Contoso.HostedEmail.DashboardAddin
|
|
{
|
|
internal static class UIConstants
|
|
{
|
|
internal static readonly Guid ContosoServicesTopLevelTab = new Guid("9F01BB81-622E-4111-9ADB-D70E200E8E33");
|
|
|
|
internal static readonly Guid ContosoServicesSubTab = new Guid("0EA12C17-7C79-421E-AEDB-47E263F9533B");
|
|
|
|
internal static readonly Guid VisitMyAccountTask = new Guid("B80E3D88-A740-46FE-9ED2-62F19EFFE4EF");
|
|
|
|
internal static readonly Guid ChangeAdminAccountTask = new Guid("6FC327B0-5091-43BD-AB12-2F73400C308B");
|
|
|
|
internal static readonly Guid DisableServicesTask = new Guid("1AF9438C-D510-49F8-90DF-25988E583EE9");
|
|
}
|
|
}
|