1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-07-09 01:05:40 +02:00
Files
Sonarr/NzbDrone.Common/Messaging/TestCommand.cs

15 lines
284 B
C#
Raw Normal View History

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