mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-16 10:03:51 -07:00
22 lines
No EOL
482 B
C#
22 lines
No EOL
482 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 => true;
|
|
|
|
public override bool UpdateScheduledTask => !SeriesId.HasValue;
|
|
}
|
|
} |