mirror of
https://github.com/lnbits/lnbits-legend.git
synced 2025-02-24 14:51:05 +01:00
9 lines
131 B
Python
9 lines
131 B
Python
from typing import NamedTuple
|
|
|
|
|
|
class AMilk(NamedTuple):
|
|
id: str
|
|
wallet: str
|
|
lnurl: str
|
|
atime: str
|
|
amount: int
|