// 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 { /// /// In line definition of a format string control. /// internal sealed class FieldControlBody : ControlBody { internal FieldFormattingDirective fieldFormattingDirective = new FieldFormattingDirective(); } }