Files
Foundry-Scrapping-API/internal/foundry/temp_models/db/ring.go

25 lines
259 B
Go

package db
type Ring struct {
ID uint
Enabled bool
Effects int
RingColors RingColors
Subject Subject
}
type RingColors struct {
ID uint
Ring string
Background string
}
type Subject struct {
ID uint
Scale int
Texture string
}