2024-07-04 16:52:51 +00:00
|
|
|
package models
|
|
|
|
|
2024-07-04 17:34:48 +00:00
|
|
|
import (
|
|
|
|
"gorm.io/gorm"
|
|
|
|
)
|
2024-07-04 17:12:39 +00:00
|
|
|
|
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
|
2024-07-05 14:25:48 +00:00
|
|
|
ImageURL string
|
2024-07-04 17:59:47 +00:00
|
|
|
Coordinates string
|
2024-07-04 16:52:51 +00:00
|
|
|
AuthorName string
|
|
|
|
Description string
|
2024-07-04 17:12:39 +00:00
|
|
|
UnlockedCounter int
|
2024-07-04 16:52:51 +00:00
|
|
|
}
|