user => clean archi

This commit is contained in:
styve Lioumba
2025-11-17 13:06:50 +01:00
parent 8ab67e724c
commit 778cb95724
36 changed files with 330 additions and 148 deletions

View File

@@ -0,0 +1,9 @@
export interface UserViewModel {
id: string;
username: string;
verified: boolean;
emailVisibility: boolean;
email: string;
name: string;
avatar: string;
}