mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-27 22:56:45 -04:00
ba96dad8c7
Co-Authored-By: Mark McDowall <markus101@users.noreply.github.com>
15 lines
398 B
C#
15 lines
398 B
C#
using NzbDrone.Core.Messaging.Commands;
|
|
|
|
namespace NzbDrone.Core.Music.Commands
|
|
{
|
|
public class MoveArtistCommand : Command
|
|
{
|
|
public int ArtistId { get; set; }
|
|
public string SourcePath { get; set; }
|
|
public string DestinationPath { get; set; }
|
|
|
|
public override bool SendUpdatesToClient => true;
|
|
public override bool RequiresDiskAccess => true;
|
|
}
|
|
}
|