Files
knightcrawler/src/producer/Features/ParseTorrentTitle/BaseParsed.cs
iPromKnight 6c03f79933 Complete
2024-03-10 13:48:27 +00:00

20 lines
707 B
C#

namespace Producer.Features.ParseTorrentTitle;
public class BaseParsed
{
public string? ReleaseTitle { get; set; }
public string? Title { get; set; }
public string? Year { get; set; }
public Edition? Edition { get; set; }
public Resolution? Resolution { get; set; }
public VideoCodec? VideoCodec { get; set; }
public AudioCodec? AudioCodec { get; set; }
public AudioChannels? AudioChannels { get; set; }
public Revision? Revision { get; set; }
public string? Group { get; set; }
public List<Language> Languages { get; set; } = [];
public List<Source> Sources { get; set; } = [];
public bool? Multi { get; set; }
public bool? Complete { get; set; }
}