Lidarr/NzbDrone.Core/Model/SabnzbdCategoryModel.cs

12 lines
208 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Text;
namespace NzbDrone.Core.Model
{
public class SabnzbdCategoryModel
{
public List<string> categories { get; set; }
}
}