UNPKG

echadospalante-core

Version:

This package contains the core of the echadospalante project, it contains the domain entities, helpers, and other utilities that are shared between the different services.

14 lines (13 loc) 411 B
import { NotificationType } from "../../../domain/notifications"; import { NotificationStatus } from "../../../domain/notifications/notification"; import { UserData } from "./user.data"; export declare class NotificationData { id: string; title: string; type: NotificationType; status: NotificationStatus; description: string; user: UserData; createdAt: Date; updatedAt: Date; }