// 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. namespace WixToolset.Data { /// /// Types of children in complex refernece. /// public enum ComplexReferenceChildType { /// Unknown complex reference type, default and invalid. Unknown, /// Component child of complex reference. Component, /// Feature child of complex reference. Feature, /// ComponentGroup child of complex reference. ComponentGroup, /// FeatureGroup child of complex reference. FeatureGroup, /// Module child of complex reference. Module, /// Payload child of complex reference. Payload, /// PayloadGroup child of complex reference. PayloadGroup, /// Package child of complex reference. Package, /// PackageGroup child of complex reference. PackageGroup, /// PatchFamily child of complex reference. PatchFamily, /// PatchFamilyGroup child of complex reference. PatchFamilyGroup, } }