mirror of
https://git.ianrenton.com/ian/spothole.git
synced 2026-02-04 09:14:30 +00:00
11 lines
220 B
Python
11 lines
220 B
Python
from dataclasses import dataclass
|
|
|
|
# Data class that defines a band.
|
|
@dataclass
|
|
class Band:
|
|
# Band name
|
|
name: str
|
|
# Start frequency, in Hz
|
|
start_freq: float
|
|
# Stop frequency, in Hz
|
|
end_freq: float |