2024-03-26 15:05:13 +00:00
|
|
|
package models
|
|
|
|
|
2024-09-11 15:54:18 +00:00
|
|
|
import "git.solsynth.dev/hydrogen/dealer/pkg/hyper"
|
|
|
|
|
2024-03-26 15:05:13 +00:00
|
|
|
type Account struct {
|
2024-09-11 15:54:18 +00:00
|
|
|
hyper.BaseUser
|
2024-03-26 15:05:13 +00:00
|
|
|
|
2024-09-11 15:54:18 +00:00
|
|
|
Channels []Channel `json:"channels"`
|
2024-03-26 15:05:13 +00:00
|
|
|
}
|