mirror of
https://git.selfprivacy.org/SelfPrivacy/selfprivacy-rest-api.git
synced 2024-11-28 06:51:28 +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
|