Enum 5511 Employee Working Type

App
Base Application
Namespace
Microsoft.HumanResources.Employee
Versions
27-28

Values, 3

Versions171819202122232425262728

Source29

Source in 29

src/Layers/W1/BaseApp/HumanResources/Employee/EmployeeWorkingType.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 Microsoft.HumanResources.Employee;

enum 5511 "Employee Working Type"
{
    Caption = 'Employee Working Type';
    Extensible = true;

    value(0; Week)
    {
        Caption = 'Week';
    }
    value(1; Month)
    {
        Caption = 'Month';
    }
    value(2; Year)
    {
        Caption = 'Year';
    }
}