mirror of
https://git.selfprivacy.org/SelfPrivacy/selfprivacy-rest-api.git
synced 2024-11-08 04:13:12 +00:00
10 lines
141 B
Python
10 lines
141 B
Python
from pydantic import BaseModel
|
|
|
|
"""for storage in Redis"""
|
|
|
|
|
|
class BackupProviderModel(BaseModel):
|
|
kind: str
|
|
login: str
|
|
key: str
|