This commit is contained in:
iPromKnight
2024-03-10 13:48:27 +00:00
parent c8a1ebd8ae
commit 6c03f79933
20 changed files with 252468 additions and 52 deletions

View File

@@ -2,6 +2,7 @@ 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; }
@@ -15,4 +16,4 @@ public class BaseParsed
public List<Source> Sources { get; set; } = [];
public bool? Multi { get; set; }
public bool? Complete { get; set; }
}
}