import { OperationAlertTypes } from '../enums'; import { BaseModel } from './BaseModel'; export interface OperationAlert extends BaseModel { activityId: string; companyId: string; establishmentId: string; type: OperationAlertTypes; key: string; value: string; metadata: string; seen: boolean; seenBy: string; alertExpiresAt: Date; }