Enum 1990 Guided Experience Type, source in 24

Source242526272829metadata in 24

src/System Application/App/Guided Experience/src/Guided Experience/GuidedExperienceType.Enum.al41 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 1990 "Guided Experience Type"
{
    Caption = 'Guided Experience Type';
    Access = Public;

    value(0; "Assisted Setup")
    {
        Caption = 'Assisted Setup', Locked = true;
    }
    value(1; "Manual Setup")
    {
        Caption = 'Manual Setup', Locked = true;
    }
    value(2; Learn)
    {
        Caption = 'Learn', Locked = true;
    }
    value(3; Tour)
    {
        Caption = 'Tour', Locked = true;
    }
    value(4; "Spotlight Tour")
    {
        Caption = 'Spotlight Tour', Locked = true;
    }
    value(5; Video)
    {
        Caption = 'Video', Locked = true;
    }
    value(6; "Application Feature")
    {
        Caption = 'Application Feature', Locked = true;
    }
}