using API.Entities;
namespace API.Parser
{
///
/// This represents a single file
///
public class ParserInfo
{
// This can be multiple
public string Chapters { get; set; }
public string Series { get; set; }
// This can be multiple
public string Volumes { get; set; }
public string Filename { get; init; }
public string FullFilePath { get; set; }
///
/// Raw (image), Archive
///
public MangaFormat Format { get; set; }
}
}