Radarr/src/NzbDrone.Core/Download/Clients/uTorrent/UTorrentTorrentCache.cs

12 lines
244 B
C#

using System.Collections.Generic;
namespace NzbDrone.Core.Download.Clients.UTorrent
{
public class UTorrentTorrentCache
{
public string CacheID { get; set; }
public List<UTorrentTorrent> Torrents { get; set; }
}
}