mirror of
https://github.com/lnbits/lnbits-legend.git
synced 2025-02-25 07:07:48 +01:00
19 lines
248 B
Python
19 lines
248 B
Python
|
from typing import NamedTuple
|
||
|
|
||
|
class Users(NamedTuple):
|
||
|
id: str
|
||
|
name: str
|
||
|
admin: str
|
||
|
email: str
|
||
|
password: str
|
||
|
|
||
|
class Wallets(NamedTuple):
|
||
|
id: str
|
||
|
admin: str
|
||
|
name: str
|
||
|
user: str
|
||
|
adminkey: str
|
||
|
inkey: str
|
||
|
|
||
|
|