mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
Use Archive.org serializer, fix stream position
This commit is contained in:
@@ -17,10 +17,10 @@ namespace SabreTools.Models.ArchiveDotOrg
|
||||
public string? BitTorrentMagnetHash { get; set; }
|
||||
|
||||
[XmlElement("mtime")]
|
||||
public long? LastModifiedTime { get; set; }
|
||||
public string? LastModifiedTime { get; set; }
|
||||
|
||||
[XmlElement("size")]
|
||||
public long? Size { get; set; }
|
||||
public string? Size { get; set; }
|
||||
|
||||
[XmlElement("md5")]
|
||||
public string? MD5 { get; set; }
|
||||
@@ -32,7 +32,7 @@ namespace SabreTools.Models.ArchiveDotOrg
|
||||
public string? SHA1 { get; set; }
|
||||
|
||||
[XmlElement("filecount")]
|
||||
public long? FileCount { get; set; }
|
||||
public string? FileCount { get; set; }
|
||||
|
||||
/// <remarks>Is this a set of defined values?</remarks>
|
||||
[XmlElement("format")]
|
||||
@@ -133,34 +133,34 @@ namespace SabreTools.Models.ArchiveDotOrg
|
||||
public string? PDFModuleVersion { get; set; }
|
||||
|
||||
[XmlElement("word_conf_0_10")]
|
||||
public long? WordConfidenceInterval0To10 { get; set; }
|
||||
public string? WordConfidenceInterval0To10 { get; set; }
|
||||
|
||||
[XmlElement("word_conf_11_20")]
|
||||
public long? WordConfidenceInterval11To20 { get; set; }
|
||||
public string? WordConfidenceInterval11To20 { get; set; }
|
||||
|
||||
[XmlElement("word_conf_21_30")]
|
||||
public long? WordConfidenceInterval21To30 { get; set; }
|
||||
public string? WordConfidenceInterval21To30 { get; set; }
|
||||
|
||||
[XmlElement("word_conf_31_40")]
|
||||
public long? WordConfidenceInterval31To40 { get; set; }
|
||||
public string? WordConfidenceInterval31To40 { get; set; }
|
||||
|
||||
[XmlElement("word_conf_41_50")]
|
||||
public long? WordConfidenceInterval41To50 { get; set; }
|
||||
public string? WordConfidenceInterval41To50 { get; set; }
|
||||
|
||||
[XmlElement("word_conf_51_60")]
|
||||
public long? WordConfidenceInterval51To60 { get; set; }
|
||||
public string? WordConfidenceInterval51To60 { get; set; }
|
||||
|
||||
[XmlElement("word_conf_61_70")]
|
||||
public long? WordConfidenceInterval61To70 { get; set; }
|
||||
public string? WordConfidenceInterval61To70 { get; set; }
|
||||
|
||||
[XmlElement("word_conf_71_80")]
|
||||
public long? WordConfidenceInterval71To80 { get; set; }
|
||||
public string? WordConfidenceInterval71To80 { get; set; }
|
||||
|
||||
[XmlElement("word_conf_81_90")]
|
||||
public long? WordConfidenceInterval81To90 { get; set; }
|
||||
public string? WordConfidenceInterval81To90 { get; set; }
|
||||
|
||||
[XmlElement("word_conf_91_100")]
|
||||
public long? WordConfidenceInterval91To100 { get; set; }
|
||||
public string? WordConfidenceInterval91To100 { get; set; }
|
||||
|
||||
#endregion
|
||||
|
||||
@@ -173,32 +173,32 @@ namespace SabreTools.Models.ArchiveDotOrg
|
||||
public string? Artist { get; set; }
|
||||
|
||||
[XmlElement("bitrate")]
|
||||
public long? Bitrate { get; set; }
|
||||
public string? Bitrate { get; set; }
|
||||
|
||||
[XmlElement("creator")]
|
||||
public string? Creator { get; set; }
|
||||
|
||||
[XmlElement("height")]
|
||||
public long? Height { get; set; }
|
||||
public string? Height { get; set; }
|
||||
|
||||
[XmlElement("length")]
|
||||
public double? Length { get; set; }
|
||||
public string? Length { get; set; }
|
||||
|
||||
[XmlElement("preview-image")]
|
||||
public string? PreviewImage { get; set; }
|
||||
|
||||
/// <remarks>Is this a set of defined values?</remarks>
|
||||
[XmlElement("rotation")]
|
||||
public long? Rotation { get; set; }
|
||||
public string? Rotation { get; set; }
|
||||
|
||||
[XmlElement("title")]
|
||||
public string? Title { get; set; }
|
||||
|
||||
[XmlElement("track")]
|
||||
public long? Track { get; set; }
|
||||
public string? Track { get; set; }
|
||||
|
||||
[XmlElement("width")]
|
||||
public long? Width { get; set; }
|
||||
public string? Width { get; set; }
|
||||
|
||||
#endregion
|
||||
|
||||
|
||||
Reference in New Issue
Block a user