export class Action { type: string; data: Record; constructor(type: string, data: Record) { this.type = type; this.data = data; } }