mirror of
https://git.selfprivacy.org/SelfPrivacy/selfprivacy-rest-api.git
synced 2024-11-06 03:23:25 +00:00
9 lines
144 B
Python
9 lines
144 B
Python
import datetime
|
|
from pydantic import BaseModel
|
|
|
|
|
|
class Snapshot(BaseModel):
|
|
id: str
|
|
service_name: str
|
|
created_at: datetime.datetime
|