Onyxl's picture
Upload 2661 files
8c763fb verified
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
// this file contains the data structures for the in memory database
// containing display and formatting information
namespace Microsoft.PowerShell.Commands.Internal.Format
{
/// <summary>
/// In line definition of a format string control.
/// </summary>
internal sealed class FieldControlBody : ControlBody
{
internal FieldFormattingDirective fieldFormattingDirective = new FieldFormattingDirective();
}
}