mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-25 22:36:59 -04:00
14 lines
299 B
C#
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; }
|
|
}
|
|
}
|