1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-16 11:37:58 +02:00
Sonarr/NzbDrone.Core/Tv/Commands/RefreshSeriesCommand.cs
2013-09-11 17:42:53 -07:00

29 lines
561 B
C#

using System;
using NzbDrone.Common;
using NzbDrone.Core.Messaging;
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;
}
}
}
}