mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
fixed diskscan
removed all stored status fields from episode
This commit is contained in:
17
NzbDrone.Core/MediaFiles/Commands/DiskScanCommand.cs
Normal file
17
NzbDrone.Core/MediaFiles/Commands/DiskScanCommand.cs
Normal 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;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user