Lidarr/NzbDrone.Core/Notifications/Plex/TestPlexServerCommand.cs

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; }
}
}