// 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
{
///
/// Compression level to use when creating cabinet.
///
public enum CompressionLevel
{
/// Use no compression.
None,
/// Use low compression.
Low,
/// Use medium compression.
Medium,
/// Use high compression.
High,
/// Use ms-zip compression.
Mszip
}
}