mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-27 20:44:00 +02:00
fixed diskscan
removed all stored status fields from episode
This commit is contained in:
14
NzbDrone.Core/MediaFiles/Commands/CleanMediaFileDb.cs
Normal file
14
NzbDrone.Core/MediaFiles/Commands/CleanMediaFileDb.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
using NzbDrone.Common.Messaging;
|
||||
|
||||
namespace NzbDrone.Core.MediaFiles.Commands
|
||||
{
|
||||
public class CleanMediaFileDb : ICommand
|
||||
{
|
||||
public int SeriesId { get; private set; }
|
||||
|
||||
public CleanMediaFileDb(int seriesId)
|
||||
{
|
||||
SeriesId = seriesId;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user