Enum 9561 Document Sharing Source
- App
- System Application
- Namespace
- System.Integration
- Versions
- 21-28
Versions171819202122232425262728
Source in 29
src/System Application/App/Document Sharing/src/DocumentSharingSource.Enum.al30 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.Integration;
/// <summary>
/// Enum describing the source of the document share record
/// </summary>
enum 9561 "Document Sharing Source"
{
Extensible = false;
/// <summary>
/// The source of the share is from the Application.
/// </summary>
value(0; App)
{
Caption = 'App';
}
/// <summary>
/// The source of the share is from the System.
/// </summary>
value(1; System)
{
Caption = 'System';
}
}