mirror of
https://github.com/knightcrawler-stremio/knightcrawler.git
synced 2024-12-20 03:29:51 +00:00
Wip Blacklisting dmm porn
Create adult text classifier ML Model wip - starting to write PTN in c# More work on season, show and movie parsing Remove ML project
This commit is contained in:
18
src/producer/Features/ParseTorrentTitle/BaseParsed.cs
Normal file
18
src/producer/Features/ParseTorrentTitle/BaseParsed.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
namespace Producer.Features.ParseTorrentTitle;
|
||||
|
||||
public class BaseParsed
|
||||
{
|
||||
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; }
|
||||
}
|
||||
Reference in New Issue
Block a user