package events

import (
	"time"
)

const (
	ActionCreated = "created"
	ActionUpdated = "updated"
	ActionDeleted = "deleted"
)

type Event struct {
	System    string      `json:"system"`
	Model     string      `json:"model"`
	ID        string      `json:"id"`
	Action    string      `json:"action"`
	Timestamp time.Time   `json:"timestamp"`
	Data      interface{} `json:"data,omitempty"`
}
