
* Refactored invite user flow to separate error handling on create user flow and email flow. This should help users that have unique situations. * Switch to using files to check LastWriteTime. Debug code in for Robbie to test on rclone * Updated Parser namespace. Changed the LastWriteTime to check all files and folders.
38 lines
1,015 B
C#
38 lines
1,015 B
C#
using System.ComponentModel;
|
|
|
|
namespace API.Entities.Enums
|
|
{
|
|
/// <summary>
|
|
/// Represents the format of the file
|
|
/// </summary>
|
|
public enum MangaFormat
|
|
{
|
|
/// <summary>
|
|
/// Image file
|
|
/// See <see cref="Services.Tasks.Scanner.Parser.Parser.ImageFileExtensions"/> for supported extensions
|
|
/// </summary>
|
|
[Description("Image")]
|
|
Image = 0,
|
|
/// <summary>
|
|
/// Archive based file
|
|
/// See <see cref="Services.Tasks.Scanner.Parser.Parser.ArchiveFileExtensions"/> for supported extensions
|
|
/// </summary>
|
|
[Description("Archive")]
|
|
Archive = 1,
|
|
/// <summary>
|
|
/// Unknown. Not used.
|
|
/// </summary>
|
|
[Description("Unknown")]
|
|
Unknown = 2,
|
|
/// <summary>
|
|
/// EPUB File
|
|
/// </summary>
|
|
[Description("EPUB")]
|
|
Epub = 3,
|
|
/// <summary>
|
|
/// PDF File
|
|
/// </summary>
|
|
[Description("PDF")]
|
|
Pdf = 4
|
|
}
|
|
}
|