export type NotificationTypeEntity = {
  id: number;
  name: string;
  minutes_between_notifications: number;
};
export default NotificationTypeEntity;
