Jackett/src/Jackett.Common/Models/CategoryMapping.cs

23 lines
606 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Jackett.Models
{
class CategoryMapping
{
public CategoryMapping(string trackerCat, string trackerCatDesc, int newzCat)
{
2015-08-23 00:02:41 +00:00
TrackerCategory = trackerCat;
TrackerCategoryDesc = trackerCatDesc;
NewzNabCategory = newzCat;
}
public string TrackerCategory { get; private set; }
public string TrackerCategoryDesc { get; private set; }
public int NewzNabCategory { get; private set; }
}
}