11 lines
195 B
Python
11 lines
195 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import annotations
|
|
|
|
import pydantic
|
|
|
|
|
|
class BotResultOut(pydantic.BaseModel):
|
|
title: str | None
|
|
description: str | None
|
|
is_netloc_banned: bool
|