mirror of
https://github.com/lidarr/Lidarr
synced 2024-12-29 02:55:38 +00:00
13 lines
299 B
C#
13 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; }
|
|
}
|
|
}
|