export interface User {
  id: string;
  name: string;
  avatar?: string;
  role?: string;
  createdAt: Date;
  updatedAt: Date;
}
