1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-19 07:52:33 +02:00
Radarr/NzbDrone.Core/Datastore/Events/ModelEvent.cs
2013-07-18 20:47:55 -07:00

25 lines
490 B
C#

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
}
}