Interactive/pkg/models/realms.go
2024-02-02 23:42:42 +08:00

11 lines
200 B
Go

package models
type Realm struct {
BaseModel
Name string `json:"name"`
Description string `json:"description"`
Posts []Post `json:"posts"`
AccountID uint `json:"account_id"`
}