1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2025-01-03 13:34:54 +00:00
Lidarr/NzbDrone.Common/Messaging/ICommand.cs
2013-09-01 21:12:18 -07:00

9 lines
No EOL
141 B
C#

using System;
namespace NzbDrone.Common.Messaging
{
public interface ICommand : IMessage
{
String CommandId { get; }
}
}