mirror of
https://github.com/nihilvux/bancho.py.git
synced 2025-09-16 18:48:38 -07:00
19 lines
229 B
Python
19 lines
229 B
Python
from __future__ import annotations
|
|
|
|
from datetime import datetime
|
|
|
|
from . import BaseModel
|
|
|
|
# input models
|
|
|
|
|
|
# output models
|
|
|
|
|
|
class Clan(BaseModel):
|
|
id: int
|
|
name: str
|
|
tag: str
|
|
owner: int
|
|
created_at: datetime
|