9 lines
122 B
Python
9 lines
122 B
Python
from typing import NamedTuple
|
|
|
|
|
|
class Target(NamedTuple):
|
|
wallet: str
|
|
source: str
|
|
percent: int
|
|
alias: str
|