2017-01-08 22:01:37 +00:00
|
|
|
using System.Collections.Generic;
|
2019-12-22 22:08:53 +00:00
|
|
|
using NzbDrone.Core.Messaging.Commands;
|
2017-01-08 22:01:37 +00:00
|
|
|
|
|
|
|
namespace NzbDrone.Core.MediaFiles.Commands
|
|
|
|
{
|
|
|
|
public class RenameMovieCommand : Command
|
|
|
|
{
|
2017-01-09 03:16:14 +00:00
|
|
|
public List<int> MovieIds { get; set; }
|
2017-01-08 22:01:37 +00:00
|
|
|
|
|
|
|
public override bool SendUpdatesToClient => true;
|
2018-11-23 07:03:32 +00:00
|
|
|
public override bool RequiresDiskAccess => true;
|
2017-01-08 22:01:37 +00:00
|
|
|
|
|
|
|
public RenameMovieCommand()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|