using System.Collections.Generic;
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 File { get; init; }
//public IEnumerable Files { get; init; }
}
}