File size: 138 Bytes
478dec6
 
 
 
 
 
 
1
2
3
4
5
6
7
from pydantic import BaseModel
from typing import Any

class ResponseGetProfile(BaseModel):
    status: str
    message: str
    data: Any