19 lines
296 B
Python
19 lines
296 B
Python
![]() |
from dataclasses import dataclass
|
||
|
|
||
|
from song import Song
|
||
|
|
||
|
type UserScoredSong = tuple[Song, int]
|
||
|
|
||
|
|
||
|
@dataclass
|
||
|
class Room:
|
||
|
id: int
|
||
|
coord: tuple[float, float]
|
||
|
name: str
|
||
|
pin: int | None
|
||
|
tags: set[str]
|
||
|
creative: bool
|
||
|
|
||
|
playlist: set[UserScoredSong]
|
||
|
history: list[Song]
|