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

15 lines
245 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):
lnurlpay: str
threshold: int
class lnurlpayout(BaseModel):
id: str
2021-12-09 18:04:04 +00:00
title: str
2021-11-28 18:11:35 +00:00
wallet: str
lnurlpay: str
threshold: str