mirror of
https://github.com/Lidarr/Lidarr
synced 2026-05-06 03:21:46 +02: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; }
|
|
}
|
|
}
|