lnbits-legend/lnbits/extensions/lnurlpayout/models.py

15 lines
246 B
Python
Raw Normal View History

2021-11-28 18:11:35 +00:00
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