mirror of
https://github.com/lnbits/lnbits-legend.git
synced 2025-02-25 07:07:48 +01:00
14 lines
246 B
Python
14 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
|