Enum 9451 File Scenario, source in 28
Source26272829metadata in 28
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.";
}
}