mirror of
https://github.com/fergalmoran/Readarr.git
synced 2025-12-30 13:28:04 +00: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;
|
|
}
|
|
}
|
|
} |