using System.Collections.Generic; using NzbDrone.Core.Messaging.Commands; namespace NzbDrone.Core.MediaFiles.Commands { public class RenameFilesCommand : Command { public int ArtistId { get; set; } public List Files { get; set; } public override bool SendUpdatesToClient => true; public override bool RequiresDiskAccess => true; public RenameFilesCommand() { } public RenameFilesCommand(int artistId, List files) { ArtistId = artistId; Files = files; } } }