2013-05-13 00:36:23 +00:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
2013-05-15 02:57:57 +00:00
|
|
|
|
|
|
|
public DiskScanCommand()
|
|
|
|
{
|
|
|
|
}
|
2013-05-13 00:36:23 +00:00
|
|
|
}
|
|
|
|
}
|