mirror of
https://github.com/Readarr/Readarr
synced 2026-04-29 00:01:17 +02:00
11 lines
277 B
C#
11 lines
277 B
C#
namespace NzbDrone.Core.Messaging.Commands
|
|
{
|
|
public class UnknownCommand : Command
|
|
{
|
|
public override bool SendUpdatesToClient => false;
|
|
|
|
public override string CompletionMessage => "Skipped";
|
|
|
|
public string ContractName { get; set; }
|
|
}
|
|
}
|