mirror of
https://github.com/Lidarr/Lidarr
synced 2026-01-03 22:23:01 +01: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; }
|
|
}
|
|
} |