Lidarr/src/NzbDrone.Core/IndexerSearch/MissingEpisodeSearchCommand.cs

18 lines
372 B
C#
Raw Normal View History

2014-03-20 23:41:28 +00:00
using System.Collections.Generic;
using NzbDrone.Core.Messaging.Commands;
namespace NzbDrone.Core.IndexerSearch
{
public class EpisodeSearchCommand : Command
{
public List<int> EpisodeIds { get; set; }
public override bool SendUpdatesToClient
{
get
{
return true;
}
}
}
}