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