Added PictureLike struct

master
Alex 2021-08-19 19:54:55 +02:00
parent c05d37d89e
commit b9984e66c3
1 changed files with 8 additions and 0 deletions

View File

@ -1,6 +1,14 @@
package structs
import "time"
type PictureLike struct {
UserId string
PictureId string
LikedAt time.Time
}
type APIPictureLike struct {
UserId string
PictureId string
}