Kavita/API/Parser/ParserInfo.cs
2021-01-03 19:50:10 -06:00

17 lines
430 B
C#

namespace API.Parser
{
/// <summary>
/// This represents a single file
/// </summary>
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 string FullFilePath { get; set; }
}
}