Realm members api

This commit is contained in:
2024-03-23 13:05:05 +08:00
parent 2b4ffb6811
commit 311700db04
6 changed files with 117 additions and 88 deletions

View File

@ -23,6 +23,8 @@ type Realm struct {
type RealmMember struct {
BaseModel
RealmID uint `json:"realm_id"`
AccountID uint `json:"account_id"`
RealmID uint `json:"realm_id"`
AccountID uint `json:"account_id"`
Realm Realm `json:"realm"`
Account Account `json:"account"`
}