File size: 263 Bytes
8450c71
 
 
 
 
68ce4db
 
 
8450c71
 
68ce4db
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
from typing import List, Optional
from pydantic import EmailStr, BaseModel
from datetime import date, datetime, time, timedelta


class addLike(BaseModel):
    postId: int
    userId: int


class deleteLike(BaseModel):
    id: int
    postId: int
    userId: int