konulu-konum-backend/models/KonuluKonum.go

14 lines
220 B
Go
Raw Normal View History

2024-07-04 16:52:51 +00:00
package models
2024-07-04 17:12:39 +00:00
import "gorm.io/gorm"
2024-07-04 16:52:51 +00:00
type KonuluKonum struct {
2024-07-04 17:12:39 +00:00
gorm.Model
2024-07-04 16:52:51 +00:00
URI string
ImageURI string
Loc string
AuthorName string
Description string
2024-07-04 17:12:39 +00:00
UnlockedCounter int
2024-07-04 16:52:51 +00:00
}