Files
serato-doctor/serato_doctor/models.py
2026-06-29 23:09:52 -07:00

18 lines
263 B
Python

from dataclasses import dataclass
from pathlib import Path
@dataclass(frozen=True)
class TrackReference:
source: Path
path: Path
filename: str
@dataclass(frozen=True)
class DiskTrack:
path: Path
filename: str
size: int
suffix: str