mirror of
https://github.com/lnbits/lnbits-legend.git
synced 2025-02-25 15:10:41 +01:00
15 lines
254 B
Python
15 lines
254 B
Python
from datetime import datetime
|
|
|
|
from pydantic import BaseModel
|
|
|
|
|
|
class CreateWebPushSubscription(BaseModel):
|
|
subscription: str
|
|
|
|
|
|
class WebPushSubscription(BaseModel):
|
|
endpoint: str
|
|
user: str
|
|
data: str
|
|
host: str
|
|
timestamp: datetime
|