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.
15 lines (14 loc) • 456 B
TypeScript
import { NotificationType } from "../../../domain/notifications";
import { NotificationStatus } from "../../../domain/notifications/notification";
import { UserDetailData } from "./user-detail.data";
export declare class NotificationData {
id: string;
title: string;
type: NotificationType;
status: NotificationStatus;
description: string;
createdAt: Date;
updatedAt: Date;
userDetailId: string;
user: UserDetailData;
}