mirror of
https://github.com/Kareadita/Kavita.git
synced 2026-06-05 06:15:25 -04:00
a7859e1a86
Co-authored-by: Amelia <77553571+Fesaa@users.noreply.github.com>
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
|
|
}
|