10 lines
131 B
Python
10 lines
131 B
Python
from typing import NamedTuple
|
|
|
|
|
|
class AMilk(NamedTuple):
|
|
id: str
|
|
wallet: str
|
|
lnurl: str
|
|
atime: int
|
|
amount: int
|