mirror of
https://github.com/Sonarr/Sonarr
synced 2025-01-31 11:32:07 +00:00
10 lines
No EOL
175 B
C#
10 lines
No EOL
175 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace NzbDrone.Common.Messaging
|
|
{
|
|
public interface ICommand : IMessage
|
|
{
|
|
String CommandId { get; }
|
|
}
|
|
} |