lnbits-legend/lnbits/extensions/lnticket/models.py

24 lines
331 B
Python
Raw Normal View History

2020-05-08 21:03:18 +01:00
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
2020-08-13 23:43:42 +01:00
paid: bool
2020-05-08 21:03:18 +01:00
time: int