Files
lnbits/lnbits/extensions/paywall/models.py
T

12 lines
160 B
Python

from typing import NamedTuple
class Paywall(NamedTuple):
id: str
wallet: str
secret: str
url: str
memo: str
amount: int
time: int