mirror of https://github.com/Jackett/Jackett
17 lines
502 B
C#
17 lines
502 B
C#
namespace Jackett.Common.Models
|
|
{
|
|
internal class CategoryMapping
|
|
{
|
|
public CategoryMapping(string trackerCat, string trackerCatDesc, int newzCat)
|
|
{
|
|
TrackerCategory = trackerCat;
|
|
TrackerCategoryDesc = trackerCatDesc;
|
|
NewzNabCategory = newzCat;
|
|
}
|
|
|
|
public string TrackerCategory { get; private set; }
|
|
public string TrackerCategoryDesc { get; private set; }
|
|
public int NewzNabCategory { get; private set; }
|
|
}
|
|
}
|