Changeset 0f71490 for frontend/src/types.ts
- Timestamp:
- 01/27/26 12:55:23 (6 months ago)
- Branches:
- main
- Children:
- 4e5cf92
- Parents:
- c6e1892
- File:
-
- 1 edited
-
frontend/src/types.ts (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
frontend/src/types.ts
rc6e1892 r0f71490 1 1 export interface User { 2 username: string;3 fullName: string;4 email?: string;5 profilePhoto?: string | null;6 role?: "ADMIN" | "NONADMIN";2 username: string; 3 fullName: string; 4 email?: string; 5 profilePhoto?: string | null; 6 role?: "ADMIN" | "NONADMIN"; 7 7 } 8 9 export interface ArtistContributionDTO { 10 musicalEntityId: number; 11 title: string; 12 genre: string; 13 role: string; 14 entityType: string; 15 } 16 export interface MusicalEntityDTO { 17 id: number; 18 title: string; 19 genre: string; 20 type: string; 21 } 22 23 export interface Playlist { 24 id: number; 25 name: string; 26 cover: string; 27 creatorName: string; 28 }
Note:
See TracChangeset
for help on using the changeset viewer.
