fixed diskscan

removed all stored status fields from episode
This commit is contained in:
kay.one
2013-05-12 17:36:23 -07:00
parent feb947fb74
commit cbe4be814c
32 changed files with 295 additions and 286 deletions

View File

@@ -0,0 +1,17 @@
using NzbDrone.Common.Messaging;
namespace NzbDrone.Core.MediaFiles.Commands
{
public class DiskScanCommand : ICommand
{
public int? SeriesId { get; private set; }
public DiskScanCommand(int seriesId = 0)
{
if (seriesId != 0)
{
SeriesId = seriesId;
}
}
}
}