Lidarr/NzbDrone.Common/Messaging/ICommand.cs

9 lines
141 B
C#
Raw Normal View History

2013-08-28 00:51:54 +00:00
using System;
namespace NzbDrone.Common.Messaging
{
public interface ICommand : IMessage
{
2013-08-28 00:51:54 +00:00
String CommandId { get; }
}
}