mirror of
https://github.com/lnbits/lnbits-legend.git
synced 2025-02-25 15:10:41 +01:00
15 lines
246 B
Python
15 lines
246 B
Python
|
from sqlite3 import Row
|
||
|
|
||
|
from pydantic import BaseModel
|
||
|
|
||
|
class CreateLnurlPayoutData(BaseModel):
|
||
|
wallet: str
|
||
|
lnurlpay: str
|
||
|
threshold: int
|
||
|
|
||
|
class lnurlpayout(BaseModel):
|
||
|
id: str
|
||
|
wallet: str
|
||
|
lnurlpay: str
|
||
|
threshold: str
|