1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-22 22:16:13 -04:00
Files
Sonarr/src/NzbDrone.Core/MediaFiles/Commands/RescanSeriesCommand.cs
T
2014-02-04 21:29:57 -08:00

17 lines
335 B
C#

using NzbDrone.Core.Messaging.Commands;
namespace NzbDrone.Core.MediaFiles.Commands
{
public class RescanSeriesCommand : Command
{
public int SeriesId { get; set; }
public override bool SendUpdatesToClient
{
get
{
return true;
}
}
}
}