mirror of
https://github.com/Akkudoktor-EOS/EOS.git
synced 2025-10-11 20:06:18 +00:00
12 lines
321 B
Python
12 lines
321 B
Python
![]() |
from typing import Optional
|
||
|
|
||
|
from pydantic import Field
|
||
|
|
||
|
from akkudoktoreos.config.configabc import SettingsBaseModel
|
||
|
|
||
|
|
||
|
class ElecPriceCommonSettings(SettingsBaseModel):
|
||
|
elecprice_provider: Optional[str] = Field(
|
||
|
"ElecPriceAkkudoktor", description="Electicity price provider id of provider to be used."
|
||
|
)
|