Changeset 98992cf for frontend/src/utils/types.ts
- Timestamp:
- 01/30/26 00:08:04 (5 months ago)
- Branches:
- main
- Children:
- 2b08bed
- Parents:
- 6de2873
- File:
-
- 1 edited
-
frontend/src/utils/types.ts (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
frontend/src/utils/types.ts
r6de2873 r98992cf 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 8 9 export interface ArtistContribution DTO{10 musicalEntityId: number;11 title: string;12 genre: string;13 role: string;14 entityType: string;9 export interface ArtistContribution { 10 musicalEntityId: number; 11 title: string; 12 genre: string; 13 role: string; 14 entityType: string; 15 15 } 16 export interface MusicalEntity DTO{17 id: number;18 title: string;19 genre: string;20 type: string;16 export interface MusicalEntity { 17 id: number; 18 title: string; 19 genre: string; 20 type: string; 21 21 } 22 22 23 23 export interface Playlist { 24 id: number;25 name: string;26 cover: string;27 creatorName: string;24 id: number; 25 name: string; 26 cover: string; 27 creatorName: string; 28 28 }
Note:
See TracChangeset
for help on using the changeset viewer.
