1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-01-21 11:02:01 +02:00
Sonarr/NzbDrone.Core/Model/ConnectionInfoModel.cs

9 lines
168 B
C#
Raw Normal View History

2011-06-17 18:46:22 -07:00
namespace NzbDrone.Core.Model
{
public class ConnectionInfoModel
{
public string Address { get; set; }
public int Port { get; set; }
}
}