namespace API.Archive;
/// 
/// Represents which library should handle opening this library
/// 
public enum ArchiveLibrary
{
    /// 
    /// The underlying archive cannot be opened
    /// 
    NotSupported = 0,
    /// 
    /// The underlying archive can be opened by SharpCompress
    /// 
    SharpCompress = 1,
    /// 
    /// The underlying archive can be opened by default .NET
    /// 
    Default = 2
}