lnbits-legend/lnbits/extensions/lnurlpayout/models.py
2022-01-30 19:43:30 +00:00

19 lines
281 B
Python

from sqlite3 import Row
from pydantic import BaseModel
class CreateLnurlPayoutData(BaseModel):
title: str
lnurlpay: str
threshold: int
class lnurlpayout(BaseModel):
id: str
title: str
wallet: str
admin_key: str
lnurlpay: str
threshold: int