export interface INotificationModelAttributes {
    _id: string;
    type: string;
    message: string;
    isRead: boolean;
}
