1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-14 11:23:42 +02:00
Sonarr/NzbDrone.Core/Model/ConnectionInfoModel.cs

9 lines
168 B
C#
Raw Normal View History

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