homelab-dashboard/types/user.d.ts
Bilal Teke c7fd939f41 v4.1
2026-04-20 20:35:43 +02:00

7 lines
123 B
TypeScript

export interface User {
id: number;
username: string;
password_hash: string;
role: string;
created_at: string;
}