2020-02-09 02:35:16 +00:00
|
|
|
namespace Jackett.Common.Models
|
2015-07-28 23:10:04 +00:00
|
|
|
{
|
2020-02-10 22:16:19 +00:00
|
|
|
internal class CategoryMapping
|
2015-07-28 23:10:04 +00:00
|
|
|
{
|
2016-12-17 15:42:50 +00:00
|
|
|
public CategoryMapping(string trackerCat, string trackerCatDesc, int newzCat)
|
2015-07-28 23:10:04 +00:00
|
|
|
{
|
2015-08-23 00:02:41 +00:00
|
|
|
TrackerCategory = trackerCat;
|
2016-12-17 15:42:50 +00:00
|
|
|
TrackerCategoryDesc = trackerCatDesc;
|
2015-07-28 23:10:04 +00:00
|
|
|
NewzNabCategory = newzCat;
|
|
|
|
}
|
|
|
|
|
|
|
|
public string TrackerCategory { get; private set; }
|
2016-12-17 15:42:50 +00:00
|
|
|
public string TrackerCategoryDesc { get; private set; }
|
2015-07-28 23:10:04 +00:00
|
|
|
public int NewzNabCategory { get; private set; }
|
|
|
|
}
|
|
|
|
}
|