mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-03 05:34:21 -04:00
18 lines
473 B
C#
18 lines
473 B
C#
using System.Collections.Generic;
|
|
|
|
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 IEnumerable<string> Files { get; init; }
|
|
}
|
|
} |