mancala/frontend/src/models/User.ts
2024-03-24 02:51:02 +03:00

6 lines
108 B
TypeScript

export interface User {
id: string;
name: string;
isOnline: boolean;
isAnonymous: boolean;
}