@ -1,6 +1,6 @@
namespace NzbDrone.Core.Download.Clients.Deluge
{
class DelugeTorrentStatus
public class DelugeTorrentStatus
public const string Paused = "Paused";
public const string Queued = "Queued";
@ -2,7 +2,7 @@
namespace NzbDrone.Core.Download.Clients.NzbVortex
class NzbVortexAuthenticationException : DownloadClientException
public class NzbVortexAuthenticationException : DownloadClientException
public NzbVortexAuthenticationException(string message, params object[] args) : base(message, args)
class NzbVortexNotLoggedInException : DownloadClientException
public class NzbVortexNotLoggedInException : DownloadClientException
public NzbVortexNotLoggedInException() : this("Authentication is required")
@ -39,7 +39,7 @@ namespace NzbDrone.Core.Download.Clients.UTorrent
public object Unknown28 { get; set; }
}
class UTorrentTorrentJsonConverter : JsonConverter
public class UTorrentTorrentJsonConverter : JsonConverter
public override bool CanConvert(Type objectType)
@ -3,7 +3,7 @@ using NzbDrone.Common.Exceptions;
namespace NzbDrone.Core.Notifications.Discord
class DiscordException : NzbDroneException
public class DiscordException : NzbDroneException
public DiscordException(string message) : base(message)
namespace NzbDrone.Core.Notifications.Slack
class SlackExeption : NzbDroneException
public class SlackExeption : NzbDroneException
public SlackExeption(string message) : base(message)
@ -6,7 +6,7 @@ using NzbDrone.Core.Validation;
namespace NzbDrone.Core.Notifications.Twitter
class Twitter : NotificationBase<TwitterSettings>
public class Twitter : NotificationBase<TwitterSettings>
private readonly ITwitterService _twitterService;