selfprivacy-rest-api/selfprivacy_api/graphql/common_types/dns.py

14 lines
190 B
Python
Raw Normal View History

2022-08-13 00:29:18 +03:00
import typing
import strawberry
@strawberry.type
class DnsRecord:
"""DNS record"""
record_type: str
name: str
content: str
ttl: int
priority: typing.Optional[int]