mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-21 01:49:57 +02:00
18 lines
403 B
C#
18 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;
|
||
|
}
|
||
|
}
|
||
|
}
|