12 lines
205 B
Python
12 lines
205 B
Python
from __future__ import annotations
|
|
|
|
from .base_data_model import BaseDataModel
|
|
|
|
|
|
class SalienceData(BaseDataModel):
|
|
size: float
|
|
colour: float
|
|
tone: float
|
|
form: float
|
|
positioning: float
|