mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-02 21:24:18 -04:00
14 lines
353 B
C#
14 lines
353 B
C#
using System.Collections.Generic;
|
|
|
|
namespace API.Parser
|
|
{
|
|
public class ParserInfo
|
|
{
|
|
// This can be multiple
|
|
public string Chapters { get; set; }
|
|
public string Series { get; set; }
|
|
// This can be multiple
|
|
public string Volume { get; set; }
|
|
public IEnumerable<string> Files { get; init; }
|
|
}
|
|
} |