2013-08-28 00:51:54 +00:00
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Common.Messaging
|
2013-05-11 23:38:41 +00:00
|
|
|
|
{
|
|
|
|
|
public class TestCommand : ICommand
|
|
|
|
|
{
|
2013-08-28 00:51:54 +00:00
|
|
|
|
public int Duration { get; set; }
|
2013-08-31 03:08:19 +00:00
|
|
|
|
public String CommandId { get; private set; }
|
2013-08-28 00:51:54 +00:00
|
|
|
|
|
2013-05-11 23:38:41 +00:00
|
|
|
|
public TestCommand()
|
|
|
|
|
{
|
|
|
|
|
Duration = 4000;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|