0ptr/models/setting.py

9 lines
105 B
Python
Raw Normal View History

2023-06-09 11:19:47 +00:00
from .base import Base
class Setting(Base):
2023-06-09 11:19:47 +00:00
name: str
value: str
def ext(self):
return 'set'