Enum 9451 File Scenario in 26

App
System Application
Namespace
System.ExternalFileStorage

Values, 1

Versions171819202122232425262728latest

Source26272829

Source in 26

src/System Application/App/External File Storage/src/Scenario/FileScenario.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.ExternalFileStorage;

/// <summary>
/// File scenarios.
/// Used to decouple file accounts from sending files.
/// </summary>
enum 9451 "File Scenario"
{
    Extensible = true;

    /// <summary>
    /// The default file scenario.
    /// Used in the cases where no other scenario is defined.
    /// </summary>
    value(0; Default)
    {
        Caption = 'Default';
    }
}

Values, 1

IdNameObsolete
0Default-