11 lines
206 B
Go
Raw Normal View History

2024-05-17 15:59:51 +08:00
package models
import "git.solsynth.dev/hydrogen/dealer/pkg/hyper"
2024-05-17 15:59:51 +08:00
type Account struct {
hyper.BaseUser
2024-08-18 12:01:41 +08:00
Attachments []Attachment `json:"attachments"`
Pools []AttachmentPool `json:"pools"`
2024-05-17 15:59:51 +08:00
}