mirror of
https://github.com/Readarr/Readarr
synced 2025-12-29 03:34:35 +01:00
18 lines
No EOL
379 B
C#
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;
|
|
}
|
|
}
|
|
}
|
|
} |