mirror of
https://github.com/lidarr/Lidarr
synced 2025-01-03 13:34:54 +00:00
9 lines
No EOL
141 B
C#
9 lines
No EOL
141 B
C#
using System;
|
|
|
|
namespace NzbDrone.Common.Messaging
|
|
{
|
|
public interface ICommand : IMessage
|
|
{
|
|
String CommandId { get; }
|
|
}
|
|
} |