export interface UserModel {
  id: number;
  pid: string;
  email: string;
  hashed_password: string;
  created_at: string;
  updated_at: string;
}
