mirror of
https://github.com/tcsenpai/swingmusic.git
synced 2025-06-07 11:45:35 +00:00
11 lines
153 B
Python
11 lines
153 B
Python
from attr import dataclass
|
|
|
|
|
|
@dataclass
|
|
class Track:
|
|
"""
|
|
Track play logger model
|
|
"""
|
|
trackhash: str
|
|
duration: int
|
|
timestamp: int |