mirror of
https://git.selfprivacy.org/SelfPrivacy/selfprivacy-rest-api.git
synced 2024-11-08 04:13:12 +00:00
7 lines
127 B
Python
7 lines
127 B
Python
|
from pydantic import BaseModel
|
||
|
|
||
|
class Snapshot(BaseModel):
|
||
|
id: str
|
||
|
service_name: str
|
||
|
created_at: datetime.datetime
|