Enum 1995 Checklist Status
- App
- System Application
- Namespace
- System.Environment.Configuration
- Versions
- 18-28
Versions171819202122232425262728
Source in 29
src/System Application/App/Guided Experience/src/Checklist/ChecklistStatus.Enum.al28 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.Environment.Configuration;
enum 1995 "Checklist Status"
{
Access = Internal;
value(0; "Not Started")
{
Caption = 'Not Started';
}
value(1; "In progress")
{
Caption = 'In progress';
}
value(2; Completed)
{
Caption = 'Completed';
}
value(3; Skipped)
{
Caption = 'Skipped';
}
}