.kavitaignore no more (#2442)
This commit is contained in:
parent
cd27efecdd
commit
7221501c4d
91 changed files with 5968 additions and 1026 deletions
19
API/Entities/Enums/FileTypeGroup.cs
Normal file
19
API/Entities/Enums/FileTypeGroup.cs
Normal file
|
@ -0,0 +1,19 @@
|
|||
using System.ComponentModel;
|
||||
|
||||
namespace API.Entities.Enums;
|
||||
|
||||
/// <summary>
|
||||
/// Represents a set of file types that can be scanned
|
||||
/// </summary>
|
||||
public enum FileTypeGroup
|
||||
{
|
||||
[Description("Archive")]
|
||||
Archive = 1,
|
||||
[Description("EPub")]
|
||||
Epub = 2,
|
||||
[Description("Pdf")]
|
||||
Pdf = 3,
|
||||
[Description("Images")]
|
||||
Images = 4
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue