mirror of https://github.com/Radarr/Radarr
26 lines
493 B
C#
26 lines
493 B
C#
using NzbDrone.Core.Messaging.Commands;
|
|
|
|
namespace NzbDrone.Core.Tv.Commands
|
|
{
|
|
public class RefreshSeriesCommand : Command
|
|
{
|
|
public int? SeriesId { get; set; }
|
|
|
|
public RefreshSeriesCommand()
|
|
{
|
|
}
|
|
|
|
public RefreshSeriesCommand(int? seriesId)
|
|
{
|
|
SeriesId = seriesId;
|
|
}
|
|
|
|
public override bool SendUpdatesToClient
|
|
{
|
|
get
|
|
{
|
|
return true;
|
|
}
|
|
}
|
|
}
|
|
} |