fixed media cover download issue

This commit is contained in:
kay.one 2013-06-02 22:39:42 -07:00
commit e5d35d7f59
4 changed files with 39 additions and 32 deletions

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