Anilibria.NET API Anilibria.NET API
Anilibria.NET API Anilibria.NET API
Author: Ilya Kotomin

Search Results for

    Class TorrenetMetadate

    Torrent metadete configuration

    Inheritance
    System.Object
    TorrenetMetadate
    Inherited Members
    System.Object.Equals(System.Object)
    System.Object.Equals(System.Object, System.Object)
    System.Object.GetHashCode()
    System.Object.GetType()
    System.Object.MemberwiseClone()
    System.Object.ReferenceEquals(System.Object, System.Object)
    System.Object.ToString()
    Namespace: Anilibria.NET.Models.TitleModel.TorrentsModel.TorrentFileModel.TorrentFileMetadataModel
    Assembly: Anilibria.NET.dll
    Syntax
    public class TorrenetMetadate

    Properties

    Announce

    An array of strings containing a list of trackers

    Declaration
    [JsonProperty("announce")]
    public string[] Announce { get; }
    Property Value
    Type Description
    System.String[]

    CreatedDate

    Torrent creation time

    Declaration
    [JsonProperty("created_timestamp")]
    [JsonConverter(typeof(UnixDateTimeConverter))]
    public DateTime CreatedDate { get; }
    Property Value
    Type Description
    DateTime

    Hash

    Torrent file hash string

    Declaration
    [JsonProperty("hash")]
    public string Hash { get; }
    Property Value
    Type Description
    System.String

    MetadateFiles

    An array of MetadateFiles containing a list of files in the torrent

    Declaration
    [JsonProperty("files_list")]
    public List<MetadateFile>? MetadateFiles { get; }
    Property Value
    Type Description
    System.Nullable<List<MetadateFile>>

    Name

    Torrent file name

    Declaration
    [JsonProperty("name")]
    public string Name { get; }
    Property Value
    Type Description
    System.String
    anilibria.tv