mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-06 02:52:41 +01:00
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;
|
||
|
}
|
||
|
}
|
||
|
}
|