konulu-konum-backend/models/KonuluKonum.go
log101 98f069c94e
All checks were successful
/ build-and-push-image (push) Successful in 1m25s
fix: change diameter to radius
2024-08-06 16:53:26 +03:00

17 lines
246 B
Go

package models
import (
"gorm.io/gorm"
)
type KonuluKonum struct {
gorm.Model
URI string
ImageURL string
Coordinates string
AuthorName string
Description string
Radius int
UnlockedCounter int
}