mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-05 10:32:35 +01:00
cbe4be814c
removed all stored status fields from episode
14 lines
288 B
C#
14 lines
288 B
C#
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;
|
|
}
|
|
}
|
|
} |