mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-22 22:15:17 -04:00
[WIP] Additions to custom formats, such as rescanning old files. (#2949)
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
using System.Collections.Generic;
|
||||
using NzbDrone.Core.Messaging.Commands;
|
||||
|
||||
namespace NzbDrone.Core.MediaFiles.Commands
|
||||
{
|
||||
public class UpdateMovieFileQualityCommand : Command
|
||||
{
|
||||
public IEnumerable<int> MovieFileIds { get; set; }
|
||||
|
||||
public override bool SendUpdatesToClient => true;
|
||||
|
||||
public UpdateMovieFileQualityCommand(IEnumerable<int> movieFileIds)
|
||||
{
|
||||
MovieFileIds = movieFileIds;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user