27 lines
547 B
C#
27 lines
547 B
C#
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;
|
|
}
|
|
}
|
|
|
|
public EpisodeSearchCommand()
|
|
{
|
|
}
|
|
|
|
public EpisodeSearchCommand(List<int> episodeIds)
|
|
{
|
|
EpisodeIds = episodeIds;
|
|
}
|
|
}
|
|
} |