mirror of
https://github.com/lnbits/lnbits-legend.git
synced 2025-02-24 22:58:46 +01:00
24 lines
348 B
Python
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
|