add classes

This commit is contained in:
Simone Tesini 2025-08-01 18:46:38 +02:00
parent d59f743708
commit f0defdd918
4 changed files with 31 additions and 12 deletions

11
backend/src/song.py Normal file
View file

@ -0,0 +1,11 @@
from dataclasses import dataclass
@dataclass
class Song:
mbid: str
title: str
artist: str
tags: list[str]
image_id: str
youtube_id: str