mirror of https://github.com/lidarr/Lidarr
20 lines
397 B
C#
20 lines
397 B
C#
using System;
|
|
using NzbDrone.Common;
|
|
using NzbDrone.Core.Messaging;
|
|
using NzbDrone.Core.Messaging.Commands;
|
|
|
|
namespace NzbDrone.Core.IndexerSearch
|
|
{
|
|
public class SeriesSearchCommand : Command
|
|
{
|
|
public int SeriesId { get; set; }
|
|
|
|
public override bool SendUpdatesToClient
|
|
{
|
|
get
|
|
{
|
|
return true;
|
|
}
|
|
}
|
|
}
|
|
} |