konulu-konum-backend/models/KonuluKonum.go

16 lines
244 B
Go
Raw Normal View History

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-04 17:34:48 +00:00
Image []byte `gorm:"type:BLOB"`
2024-07-04 16:52:51 +00:00
Loc string
AuthorName string
Description string
2024-07-04 17:12:39 +00:00
UnlockedCounter int
2024-07-04 16:52:51 +00:00
}