9 lines
150 B
Python
9 lines
150 B
Python
from __future__ import annotations
|
|
|
|
from .base_data_model import BaseDataModel
|
|
|
|
|
|
class ContactData(BaseDataModel):
|
|
offer: float
|
|
demand: float
|