mirror of
https://github.com/Kareadita/Kavita.git
synced 2026-01-18 01:50:36 -05:00
21 lines
499 B
C#
21 lines
499 B
C#
namespace API.DTOs.Archive;
|
|
|
|
/// <summary>
|
|
/// Represents which library should handle opening this library
|
|
/// </summary>
|
|
public enum ArchiveLibrary
|
|
{
|
|
/// <summary>
|
|
/// The underlying archive cannot be opened
|
|
/// </summary>
|
|
NotSupported = 0,
|
|
/// <summary>
|
|
/// The underlying archive can be opened by SharpCompress
|
|
/// </summary>
|
|
SharpCompress = 1,
|
|
/// <summary>
|
|
/// The underlying archive can be opened by default .NET
|
|
/// </summary>
|
|
Default = 2
|
|
}
|