/**
 * JWT Payload Interface
 * Defines the structure of the JWT payload used in authentication
 */
export type TJwtPayload = {
  id: string;
  role?: string;
  email?: string;
};
