mirror of
https://github.com/lnbits/lnbits-legend.git
synced 2024-11-20 10:39:59 +01:00
19 lines
281 B
Python
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
|