Readarr/src/NzbDrone.Core/IndexerSearch/MissingEpisodeSearchCommand.cs
2014-04-02 16:25:54 -07:00

18 lines
No EOL
379 B
C#

using System.Collections.Generic;
using NzbDrone.Core.Messaging.Commands;
namespace NzbDrone.Core.IndexerSearch
{
public class MissingEpisodeSearchCommand : Command
{
public List<int> EpisodeIds { get; set; }
public override bool SendUpdatesToClient
{
get
{
return true;
}
}
}
}