mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-05-24 00:52:23 -04:00
12 lines
249 B
C#
12 lines
249 B
C#
namespace API.Archive
|
|
{
|
|
/// <summary>
|
|
/// Represents which library should handle opening this library
|
|
/// </summary>
|
|
public enum ArchiveLibrary
|
|
{
|
|
NotSupported = 0,
|
|
SharpCompress = 1,
|
|
Default = 2
|
|
}
|
|
} |