You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Lidarr/NzbDrone.Core/Notifications/Xbmc/TestXbmcCommand.cs

17 lines
428 B

using System;
using NzbDrone.Common;
11 years ago
using NzbDrone.Core.Messaging;
using NzbDrone.Core.Messaging.Commands;
12 years ago
namespace NzbDrone.Core.Notifications.Xbmc
{
11 years ago
public class TestXbmcCommand : Command
12 years ago
{
public string Host { get; set; }
public int Port { get; set; }
public string Username { get; set; }
public string Password { get; set; }
public int DisplayTime { get; set; }
12 years ago
}
}