Paperclip/pkg/internal/models/accounts.go

11 lines
206 B
Go
Raw Normal View History

2024-05-17 07:59:51 +00:00
package models
import "git.solsynth.dev/hydrogen/dealer/pkg/hyper"
2024-05-17 07:59:51 +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
}