|
|
@ -1,5 +1,4 @@
|
|
|
|
using System.Text.Json.Serialization;
|
|
|
|
using System.Text.Json.Serialization;
|
|
|
|
using NzbDrone.Common.Serializer;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Indexers.Definitions.FileList;
|
|
|
|
namespace NzbDrone.Core.Indexers.Definitions.FileList;
|
|
|
|
|
|
|
|
|
|
|
@ -23,15 +22,12 @@ public class FileListTorrent
|
|
|
|
[JsonPropertyName("imdb")]
|
|
|
|
[JsonPropertyName("imdb")]
|
|
|
|
public string ImdbId { get; set; }
|
|
|
|
public string ImdbId { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
[JsonConverter(typeof(BooleanConverter))]
|
|
|
|
|
|
|
|
public bool Internal { get; set; }
|
|
|
|
public bool Internal { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
[JsonPropertyName("freeleech")]
|
|
|
|
[JsonPropertyName("freeleech")]
|
|
|
|
[JsonConverter(typeof(BooleanConverter))]
|
|
|
|
|
|
|
|
public bool FreeLeech { get; set; }
|
|
|
|
public bool FreeLeech { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
[JsonPropertyName("doubleup")]
|
|
|
|
[JsonPropertyName("doubleup")]
|
|
|
|
[JsonConverter(typeof(BooleanConverter))]
|
|
|
|
|
|
|
|
public bool DoubleUp { get; set; }
|
|
|
|
public bool DoubleUp { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
[JsonPropertyName("upload_date")]
|
|
|
|
[JsonPropertyName("upload_date")]
|
|
|
|