mirror of
https://github.com/Kareadita/Kavita.git
synced 2026-03-10 12:05:51 -04:00
Co-authored-by: Joseph Milazzo <joseph.v.milazzo@gmail.com> Co-authored-by: Joe Milazzo <josephmajora@gmail.com>
21 lines
509 B
C#
21 lines
509 B
C#
namespace Kavita.Models.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
|
|
}
|