mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
18 lines
525 B
C#
18 lines
525 B
C#
using NzbDrone.Core.MediaFiles.EpisodeImport;
|
|
using NzbDrone.Core.Messaging.Commands;
|
|
|
|
namespace NzbDrone.Core.MediaFiles.Commands
|
|
{
|
|
public class DownloadedMovieScanCommand : Command
|
|
{
|
|
public override bool SendUpdatesToClient => SendUpdates;
|
|
|
|
public bool SendUpdates { get; set; }
|
|
|
|
// Properties used by third-party apps, do not modify.
|
|
public string Path { get; set; }
|
|
public string DownloadClientId { get; set; }
|
|
public ImportMode ImportMode { get; set; }
|
|
}
|
|
}
|