started working on subdomains extension
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
from typing import NamedTuple
|
||||
|
||||
|
||||
class Domains(NamedTuple):
|
||||
id: str
|
||||
wallet: str
|
||||
domainName: str
|
||||
cfToken: str
|
||||
cfZoneId: str
|
||||
webhook: str
|
||||
description: str
|
||||
cost: int
|
||||
amountmade: int
|
||||
time: int
|
||||
|
||||
|
||||
class Subdomains(NamedTuple):
|
||||
id: str
|
||||
domainName: str
|
||||
email: str
|
||||
subdomain: str
|
||||
ip: str
|
||||
wallet: str
|
||||
sats: int
|
||||
paid: bool
|
||||
time: int
|
||||
Reference in New Issue
Block a user