common update

This commit is contained in:
2025-06-18 11:48:41 +07:00
parent 88c4ee362e
commit 047290e2ea
27 changed files with 1533 additions and 87 deletions
+11
View File
@@ -0,0 +1,11 @@
from pydantic import BaseModel
from datetime import datetime
from typing import Optional
class DiscordChannel(BaseModel):
id: Optional[int] = None
created_at: Optional[datetime] = None
updated_at: Optional[datetime] = None
server_id: int
channel_id: int
app: str