/**
 * Generated by orval v8.23.0 🍺
 * Do not edit manually.
 * Api
 * API operativa de Y.E. Transport & Constructors
 * OpenAPI spec version: 1.0.0
 */
import type { CurrentUserRole } from './currentUserRole';

export interface CurrentUser {
  id: string;
  name: string;
  email: string;
  role: CurrentUserRole;
  initials?: string;
  permissions?: string[];
}
