1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-03-05 15:15:59 +02:00
Sonarr/NzbDrone.Core/Notifications/Plex/TestPlexServerCommand.cs

19 lines
422 B
C#
Raw Normal View History

2013-08-27 17:51:54 -07:00
using System;
using NzbDrone.Common;
using NzbDrone.Common.Messaging;
namespace NzbDrone.Core.Notifications.Plex
{
public class TestPlexServerCommand : ICommand
{
2013-08-27 17:51:54 -07:00
public String CommandId { get; set; }
public string Host { get; set; }
public int Port { get; set; }
2013-08-27 17:51:54 -07:00
public TestPlexServerCommand()
{
CommandId = HashUtil.GenerateCommandId();
}
}
}