Enum 1995 Checklist Status in 28

App
System Application
Namespace
System.Environment.Configuration

Values, 4

Versions171819202122232425262728latest

Source242526272829

Source in 28

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';
    }
}

Values, 4

IdNameObsolete
0Not Started-
1In progress-
2Completed-
3Skipped-