File size: 277 Bytes
0901162 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
from pydantic import BaseModel
class shakwa(BaseModel):
address:str
complaintbody:str
date:int
governorate:str
doc_id:str
organization:str
summary:str
title:str
user_id:str
class feedback(BaseModel):
Date:str
Uid:int
text:str |