Jackett/src/Jackett.Common/Models/TrackerCache.cs

13 lines
318 B
C#
Raw Normal View History

2020-02-09 02:35:16 +00:00
using System.Collections.Generic;
2015-07-26 14:22:20 +00:00
namespace Jackett.Common.Models
2015-07-26 14:22:20 +00:00
{
internal class TrackerCache
2015-07-26 14:22:20 +00:00
{
public string TrackerId { set; get; }
public string TrackerName { set; get; }
public Dictionary<string, TrackerCacheQuery> Queries = new Dictionary<string, TrackerCacheQuery>();
2015-07-26 14:22:20 +00:00
}
}