export interface Profile {
  id?: number;
  name: string;
  rank: number;
  createdAt?: string;
  updatedAt?: string;
}
