mirror of
https://gitee.com/wanwujie/sub2api
synced 2026-04-03 06:52:13 +08:00
14 lines
166 B
Go
14 lines
166 B
Go
package service
|
|
|
|
import "time"
|
|
|
|
type AccountGroup struct {
|
|
AccountID int64
|
|
GroupID int64
|
|
Priority int
|
|
CreatedAt time.Time
|
|
|
|
Account *Account
|
|
Group *Group
|
|
}
|