/**
 * Entity definition for the Notification domain
 */

export interface NotificationEntity {
  id: string;
  // Add your entity properties here
}

export type NotificationCreationData = Omit<NotificationEntity, 'id'>;
export type NotificationUpdateData = Partial<NotificationCreationData>;