Added PictureLike struct
parent
c05d37d89e
commit
b9984e66c3
|
@ -1,6 +1,14 @@
|
||||||
package structs
|
package structs
|
||||||
|
|
||||||
|
import "time"
|
||||||
|
|
||||||
type PictureLike struct {
|
type PictureLike struct {
|
||||||
UserId string
|
UserId string
|
||||||
PictureId string
|
PictureId string
|
||||||
|
LikedAt time.Time
|
||||||
|
}
|
||||||
|
|
||||||
|
type APIPictureLike struct {
|
||||||
|
UserId string
|
||||||
|
PictureId string
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue