// 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 { /// /// Type of section. /// public enum SectionType { /// Unknown section type, default and invalid. Unknown, /// Bundle section type. Bundle, /// Fragment section type. Fragment, /// Module section type. Module, /// Product section type. Product, /// Patch creation section type. PatchCreation, /// Patch section type. Patch } }