Lidarr/NzbDrone.Core/Download/Clients/Sabnzbd/SabModel.cs

10 lines
216 B
C#
Raw Normal View History

2013-03-05 05:33:34 +00:00
namespace NzbDrone.Core.Download.Clients.Sabnzbd
2011-04-25 07:42:29 +00:00
{
public class SabModel
2011-04-25 07:42:29 +00:00
{
public string Host { get; set; }
2011-04-25 07:42:29 +00:00
public int Port { get; set; }
public string ApiKey { get; set; }
2011-04-25 07:42:29 +00:00
}
}