parent
6f25e1e6a2
commit
a3f7b169c9
@ -0,0 +1,15 @@
|
||||
using System.Collections.Generic;
|
||||
using NzbDrone.Common.Messaging;
|
||||
|
||||
namespace NzbDrone.Core.ThingiProvider.Events
|
||||
{
|
||||
public class ProviderBulkUpdatedEvent<TProvider> : IEvent
|
||||
{
|
||||
public IEnumerable<ProviderDefinition> Definitions { get; private set; }
|
||||
|
||||
public ProviderBulkUpdatedEvent(IEnumerable<ProviderDefinition> definitions)
|
||||
{
|
||||
Definitions = definitions;
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in new issue