Enum 9451 File Scenario

App
System Application
Namespace
System.ExternalFileStorage
Versions
26-28

Values, 1

Versions171819202122232425262728

Source26272829

Source in 29

src/System Application/App/External File Storage/src/Scenario/FileScenario.Enum.al26 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" implements "File Scenario"
{
    Extensible = true;
    DefaultImplementation = "File Scenario" = "Default File Scenario Impl.";

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