Added picture struct

master
Alex 2021-08-01 15:04:11 +02:00
parent b671acb7bf
commit bad8843b83
1 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1,12 @@
package structs
import "time"
type Picture struct {
UserId string
PictureId string
Likes int
Location string
Description string
CreatedAt time.Time
}