lnbits-legend/lnbits/extensions/lnticket/models.py
2020-11-30 14:02:17 +00:00

24 lines
348 B
Python

from typing import NamedTuple
class Forms(NamedTuple):
id: str
wallet: str
name: str
webhook: str
description: str
costpword: int
amountmade: int
time: int
class Tickets(NamedTuple):
id: str
form: str
email: str
ltext: str
name: str
wallet: str
sats: int
paid: bool
time: int