2025-10-01 19:55:38 +02:00

8 lines
156 B
TypeScript

export interface IUser {
uid: string;
isAdministrator?: boolean;
isDefaultUser?: boolean;
username: string;
password?: string;
}