1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2024-12-28 18:47:52 +00:00
Lidarr/NzbDrone.Core/Messaging/Tracking/ExistingCommand.cs
2013-09-11 17:42:53 -07:00

17 lines
403 B
C#

using System;
using NzbDrone.Core.Messaging.Commands;
namespace NzbDrone.Core.Messaging.Tracking
{
public class ExistingCommand
{
public Boolean Existing { get; set; }
public Command Command { get; set; }
public ExistingCommand(Boolean exisitng, Command trackedCommand)
{
Existing = exisitng;
Command = trackedCommand;
}
}
}