Lidarr/NzbDrone.Core/Tv/Commands/RefreshSeriesCommand.cs

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;
}
}
}
}