2024-02-02 15:42:42 +00:00
|
|
|
package models
|
|
|
|
|
|
|
|
type Realm struct {
|
|
|
|
BaseModel
|
|
|
|
|
2024-02-09 04:36:39 +00:00
|
|
|
Name string `json:"name"`
|
|
|
|
Description string `json:"description"`
|
2024-03-02 17:23:11 +00:00
|
|
|
Articles []Article `json:"article"`
|
|
|
|
Moments []Moment `json:"moments"`
|
2024-02-09 04:36:39 +00:00
|
|
|
Members []RealmMember `json:"members"`
|
|
|
|
IsPublic bool `json:"is_public"`
|
|
|
|
AccountID uint `json:"account_id"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type RealmMember struct {
|
|
|
|
BaseModel
|
|
|
|
|
|
|
|
RealmID uint `json:"realm_id"`
|
|
|
|
AccountID uint `json:"account_id"`
|
2024-02-02 15:42:42 +00:00
|
|
|
}
|