Ignore:
Timestamp:
01/27/26 12:55:23 (6 months ago)
Author:
Dimitar Arsov <dimitararsov04@…>
Branches:
main
Children:
4e5cf92
Parents:
c6e1892
Message:

show follow/following button

File:
1 edited

Legend:

Unmodified
Added
Removed
  • frontend/src/types.ts

    rc6e1892 r0f71490  
    11export 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";
    77}
     8
     9export interface ArtistContributionDTO {
     10  musicalEntityId: number;
     11  title: string;
     12  genre: string;
     13  role: string;
     14  entityType: string;
     15}
     16export interface MusicalEntityDTO {
     17  id: number;
     18  title: string;
     19  genre: string;
     20  type: string;
     21}
     22
     23export 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.