1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-31 03:11:07 +02:00
Sonarr/src/NzbDrone.Core/IndexerSearch/MissingEpisodeSearchCommand.cs

18 lines
379 B
C#
Raw Normal View History

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