| 1 | // Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. |
| 2 | |
| 3 | namespace WixToolset.Data |
| 4 | { |
| 5 | using WixToolset.Data.Symbols; |
| 6 | |
| 7 | public static partial class SymbolDefinitions |
| 8 | { |
| 9 | public static readonly IntermediateSymbolDefinition WixBundleMsiPackagePayload = new IntermediateSymbolDefinition( |
| 10 | SymbolDefinitionType.WixBundleMsiPackagePayload, |
| 11 | new IntermediateFieldDefinition[] |
| 12 | { |
| 13 | }, |
| 14 | typeof(WixBundleMsiPackagePayloadSymbol)); |
| 15 | } |
| 16 | } |
| 17 | |
| 18 | namespace WixToolset.Data.Symbols |
| 19 | { |
| 20 | public enum WixBundleMsiPackagePayloadSymbolFields |
| 21 | { |
| 22 | } |
| 23 | |
| 24 | public class WixBundleMsiPackagePayloadSymbol : IntermediateSymbol |
| 25 | { |
| 26 | public WixBundleMsiPackagePayloadSymbol() : base(SymbolDefinitions.WixBundleMsiPackagePayload, null, null) |
| 27 | { |
| 28 | } |
| 29 | |
| 30 | public WixBundleMsiPackagePayloadSymbol(SourceLineNumber sourceLineNumber, Identifier id = null) : base(SymbolDefinitions.WixBundleMsiPackagePayload, sourceLineNumber, id) |
| 31 | { |
| 32 | } |
| 33 | |
| 34 | public IntermediateField this[WixBundleMsiPackagePayloadSymbolFields index] => this.Fields[(int)index]; |
| 35 | } |
| 36 | } |