1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-03-07 15:20:58 +02:00
Sonarr/NzbDrone.Core/Notifications/Plex/TestPlexServerCommand.cs
2013-09-11 17:42:53 -07:00

14 lines
299 B
C#

using System;
using NzbDrone.Common;
using NzbDrone.Core.Messaging;
using NzbDrone.Core.Messaging.Commands;
namespace NzbDrone.Core.Notifications.Plex
{
public class TestPlexServerCommand : Command
{
public string Host { get; set; }
public int Port { get; set; }
}
}