1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2025-01-31 20:03:06 +00:00
Radarr/NzbDrone.Common/Messaging/TestCommand.cs

15 lines
292 B
C#
Raw Normal View History

2013-08-28 00:51:54 +00:00
using System;
namespace NzbDrone.Common.Messaging
{
public class TestCommand : ICommand
{
2013-08-28 00:51:54 +00:00
public int Duration { get; set; }
public String CommandId { get; private set; }
2013-08-28 00:51:54 +00:00
public TestCommand()
{
Duration = 4000;
}
}
}