mirror of
https://github.com/Jackett/Jackett.git
synced 2025-09-17 17:34:09 +02:00
24 lines
699 B
C#
24 lines
699 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Jackett.Models
|
|
{
|
|
public class TorrentPotatoResponseItem
|
|
{
|
|
public string release_name { get; set; }
|
|
public string torrent_id { get; set; }
|
|
public string details_url { get; set; }
|
|
public string download_url { get; set; }
|
|
public string imdb_id { get; set; }
|
|
public bool freeleech { get; set; }
|
|
public string type { get; set; }
|
|
public long size { get; set; }
|
|
public int leechers { get; set; }
|
|
public int seeders { get; set; }
|
|
public DateTime publish_date { get; set; }
|
|
}
|
|
}
|