moved definitions of data classes into module where used

This commit is contained in:
brian
2024-10-20 20:08:37 +00:00
parent ba7a7299c2
commit 4ba68d056b
15 changed files with 24 additions and 15 deletions
+12
View File
@@ -0,0 +1,12 @@
"""Definition of ContactData data model."""
from __future__ import annotations
from .data_model import DataModel
class ContactData(DataModel):
"""ContactData data model."""
offer: float
demand: float