File size: 517 Bytes
8c763fb
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// 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();
    }
}