"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.AutomationsEvent = void 0;
class AutomationsEvent {
type;
date;
constructor(type, date) {
this.type = type;
this.date = date;
}
}
exports.AutomationsEvent = AutomationsEvent;