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.
29 lines
814 B
29 lines
814 B
using System;
|
|
using NzbDrone.Api.REST;
|
|
using NzbDrone.Core.Datastore.Events;
|
|
|
|
namespace NzbDrone.Api
|
|
{
|
|
public class ResourceChangeMessage<TResource> where TResource : RestResource
|
|
{
|
|
public TResource Resource { get; private set; }
|
|
public ModelAction Action { get; private set; }
|
|
|
|
public ResourceChangeMessage(ModelAction action)
|
|
{
|
|
if (action != ModelAction.Deleted && action != ModelAction.Sync)
|
|
{
|
|
throw new InvalidOperationException("Resource message without a resource needs to have Delete or Sync as action");
|
|
}
|
|
|
|
Action = action;
|
|
}
|
|
|
|
public ResourceChangeMessage(TResource resource, ModelAction action)
|
|
{
|
|
Resource = resource;
|
|
Action = action;
|
|
}
|
|
}
|
|
|
|
} |