Enum 1888 Environment Type, source in 28
Source242526272829metadata in 28
src/System Application/App/Environment Cleanup/src/EnvironmentType.Enum.al24 lines, Copyright (c) Microsoft Corporation. MIT
// ------------------------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.
// ------------------------------------------------------------------------------------------------
namespace System.DataAdministration;
/// <summary>
/// Environment type
/// </summary>
enum 1888 "Environment Type"
{
Access = Public;
Extensible = false;
value(0; Sandbox)
{
Caption = 'Sandbox', Locked = true;
}
value(1; Production)
{
Caption = 'Production', Locked = true;
}
}