Files
lnbits/lnbits/extensions/lnticket/models.py
T
2020-08-30 23:19:43 -03:00

24 lines
331 B
Python

from typing import NamedTuple
class Forms(NamedTuple):
id: str
wallet: str
name: 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