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.
25 lines
490 B
25 lines
490 B
using NzbDrone.Common.Messaging;
|
|
|
|
namespace NzbDrone.Core.Datastore.Events
|
|
{
|
|
public class ModelEvent<T> : IEvent where T : ModelBase
|
|
{
|
|
public T Model { get; set; }
|
|
public RepositoryAction Action { get; set; }
|
|
|
|
public ModelEvent(T model, RepositoryAction action)
|
|
{
|
|
Model = model;
|
|
Action = action;
|
|
}
|
|
}
|
|
|
|
public enum RepositoryAction
|
|
{
|
|
Created = 1,
|
|
Updated = 2,
|
|
Deleted = 3
|
|
}
|
|
|
|
|
|
} |