cannoli-interfaces
Version:
Interfaces de Projetos Cannoli
17 lines (16 loc) • 383 B
TypeScript
import { CannoliETopics } from "../../cannoli";
export interface INotify {
active?: boolean;
companyId: string;
containerId: string;
createdAt: Date | number;
data: any;
eventId: string;
id: string;
notified: boolean;
notifiedAt: number | null;
topic: CannoliETopics;
topicId: string;
updatedAt: Date | number;
version?: string;
}