using System.ComponentModel;
namespace API.Entities.Enums;
/// 
/// Represents the format of the file
/// 
public enum MangaFormat
{
    /// 
    /// Image file
    /// See  for supported extensions
    /// 
    [Description("Image")]
    Image = 0,
    /// 
    /// Archive based file
    /// See  for supported extensions
    /// 
    [Description("Archive")]
    Archive = 1,
    /// 
    /// Unknown
    /// 
    /// Default state for all files, but at end of processing, will never be Unknown.
    [Description("Unknown")]
    Unknown = 2,
    /// 
    /// EPUB File
    /// 
    [Description("EPUB")]
    Epub = 3,
    /// 
    /// PDF File
    /// 
    [Description("PDF")]
    Pdf = 4
}