mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-18 21:35:51 -04:00
10 lines
175 B
C#
10 lines
175 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace NzbDrone.Common.Messaging
|
|
{
|
|
public interface ICommand : IMessage
|
|
{
|
|
String CommandId { get; }
|
|
}
|
|
} |