mirror of
https://github.com/lnbits/lnbits-legend.git
synced 2025-02-25 07:07:48 +01:00
8 lines
122 B
Python
8 lines
122 B
Python
from typing import NamedTuple
|
|
|
|
|
|
class Target(NamedTuple):
|
|
wallet: str
|
|
source: str
|
|
percent: int
|
|
alias: str
|