Interactive/pkg/models/realms.go

11 lines
200 B
Go
Raw Normal View History

2024-02-02 15:42:42 +00:00
package models
type Realm struct {
BaseModel
Name string `json:"name"`
Description string `json:"description"`
Posts []Post `json:"posts"`
AccountID uint `json:"account_id"`
}