1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2025-01-02 21:15:05 +00:00
Lidarr/NzbDrone.Core/MediaFiles/Commands/DiskScanCommand.cs
kay.one cbe4be814c fixed diskscan
removed all stored status fields from episode
2013-05-12 17:36:23 -07:00

17 lines
No EOL
354 B
C#

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;
}
}
}
}