1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-20 08:21:46 +02:00
Radarr/NzbDrone.Core/Download/Clients/Sabnzbd/SabModel.cs

10 lines
216 B
C#
Raw Normal View History

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