1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-03-05 15:15:59 +02:00

10 lines
216 B
C#
Raw Normal View History

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