mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 18:57:39 -07:00
fixed media cover download issue
This commit is contained in:
parent
287dedadea
commit
e5d35d7f59
4 changed files with 39 additions and 32 deletions
14
NzbDrone.Core/Tv/Commands/RefreshSeriesCommand.cs
Normal file
14
NzbDrone.Core/Tv/Commands/RefreshSeriesCommand.cs
Normal file
|
@ -0,0 +1,14 @@
|
|||
using NzbDrone.Common.Messaging;
|
||||
|
||||
namespace NzbDrone.Core.Tv.Commands
|
||||
{
|
||||
public class RefreshSeriesCommand : ICommand
|
||||
{
|
||||
public int? SeriesId { get; private set; }
|
||||
|
||||
public RefreshSeriesCommand(int? seriesId)
|
||||
{
|
||||
SeriesId = seriesId;
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue