mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-27 04:21:27 +02:00
17 lines
353 B
C#
17 lines
353 B
C#
using NzbDrone.Core.Messaging.Commands;
|
|
|
|
namespace NzbDrone.Core.MediaFiles.Commands
|
|
{
|
|
public class DownloadedEpisodesScanCommand : Command
|
|
{
|
|
public override bool SendUpdatesToClient
|
|
{
|
|
get
|
|
{
|
|
return SendUpdates;
|
|
}
|
|
}
|
|
|
|
public bool SendUpdates { get; set; }
|
|
}
|
|
} |