/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
*/
package com.microsoft.azure.management.appservice;
/**
* Defines values for app service platform architecture.
*/
public enum PlatformArchitecture {
/** Enum value for 32 bit platform. */
X86,
/** Enum value for 64 bit platform. */
X64
}