Files
Readarr/src/NzbDrone.Core/IndexerSearch/SeriesSearchCommand.cs
T
2016-12-21 20:38:37 -08:00

11 lines
245 B
C#

using NzbDrone.Core.Messaging.Commands;
namespace NzbDrone.Core.IndexerSearch
{
public class SeriesSearchCommand : Command
{
public int SeriesId { get; set; }
public override bool SendUpdatesToClient => true;
}
}