mirror of
https://github.com/Readarr/Readarr
synced 2026-01-05 07:03:13 +01:00
13 lines
No EOL
216 B
C#
13 lines
No EOL
216 B
C#
namespace NzbDrone.Common.Messaging
|
|
{
|
|
public class TestCommand : ICommand
|
|
{
|
|
public TestCommand()
|
|
{
|
|
Duration = 4000;
|
|
}
|
|
|
|
public int Duration { get; set; }
|
|
|
|
}
|
|
} |