Files
knightcrawler/src/producer/Features/ParseTorrentTitle/QualityModel.cs
iPromKnight 6600fceb1a 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
2024-03-10 12:48:16 +00:00

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();
}