mirror of
https://github.com/Prowlarr/Prowlarr
synced 2026-05-09 05:22:09 +02:00
18 lines
No EOL
370 B
C#
18 lines
No EOL
370 B
C#
using System;
|
|
using NzbDrone.Core.Messaging.Commands;
|
|
|
|
namespace NzbDrone.Core.MediaFiles.Commands
|
|
{
|
|
public class DownloadedEpisodesScanCommand : Command
|
|
{
|
|
public override bool SendUpdatesToClient
|
|
{
|
|
get
|
|
{
|
|
return SendUpdates;
|
|
}
|
|
}
|
|
|
|
public Boolean SendUpdates { get; set; }
|
|
}
|
|
} |