mirror of
https://github.com/knightcrawler-stremio/knightcrawler.git
synced 2024-12-20 03:29:51 +00:00
Create adult text classifier ML Model wip - starting to write PTN in c# More work on season, show and movie parsing Remove ML project
9 lines
280 B
C#
9 lines
280 B
C#
namespace Producer.Features.ParseTorrentTitle;
|
|
|
|
public class QualityModel
|
|
{
|
|
public List<Source> Sources { get; set; } = [];
|
|
public QualityModifier? Modifier { get; set; }
|
|
public Resolution? Resolution { get; set; }
|
|
public Revision Revision { get; set; } = new();
|
|
} |