1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-16 11:37:58 +02:00
Sonarr/NzbDrone.Core/Datastore/Events/ModelEvent.cs
2013-09-11 17:42:53 -07:00

27 lines
509 B
C#

using NzbDrone.Common.Messaging;
namespace NzbDrone.Core.Datastore.Events
{
public class ModelEvent <TModel> : IEvent
{
public TModel Model { get; set; }
public ModelAction Action { get; set; }
public ModelEvent(TModel model, ModelAction action)
{
Model = model;
Action = action;
}
}
public enum ModelAction
{
Unknow = 0,
Created = 1,
Updated = 2,
Deleted = 3,
Sync = 4
}
}