2024-05-17 07:59:51 +00:00
|
|
|
package models
|
|
|
|
|
2024-10-27 05:13:40 +00:00
|
|
|
import "git.solsynth.dev/hypernet/nexus/pkg/nex/sec"
|
2024-05-17 07:59:51 +00:00
|
|
|
|
2024-09-11 15:49:20 +00:00
|
|
|
type Account struct {
|
2024-10-27 05:13:40 +00:00
|
|
|
sec.UserInfo
|
2024-08-18 04:01:41 +00:00
|
|
|
|
|
|
|
Attachments []Attachment `json:"attachments"`
|
|
|
|
Pools []AttachmentPool `json:"pools"`
|
2024-05-17 07:59:51 +00:00
|
|
|
}
|