1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-01-19 10:54:05 +02:00

20 lines
369 B
C#
Raw Normal View History

2013-09-10 23:33:47 -07:00
namespace NzbDrone.Core.Messaging.Commands
{
public class TestCommand : Command
{
public int Duration { get; set; }
public override bool SendUpdatesToClient
{
get
{
return true;
}
}
public TestCommand()
{
Duration = 4000;
}
}
}