You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
494 B
17 lines
494 B
12 years ago
|
using NzbDrone.Common.Messaging;
|
||
11 years ago
|
using NzbDrone.Core.ThingiProvider;
|
||
12 years ago
|
|
||
|
namespace NzbDrone.Core.Indexers
|
||
|
{
|
||
|
public class IndexerSettingUpdatedEvent : IEvent
|
||
|
{
|
||
|
public string IndexerName { get; private set; }
|
||
11 years ago
|
public IProviderConfig IndexerSetting { get; private set; }
|
||
12 years ago
|
|
||
11 years ago
|
public IndexerSettingUpdatedEvent(string indexerName, IProviderConfig indexerSetting)
|
||
12 years ago
|
{
|
||
|
IndexerName = indexerName;
|
||
|
IndexerSetting = indexerSetting;
|
||
|
}
|
||
|
}
|
||
|
}
|