mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-06-08 14:08:30 -05:00
15 lines
201 B
Go
15 lines
201 B
Go
|
|
package income
|
||
|
|
|
||
|
|
import (
|
||
|
|
"go-common/library/time"
|
||
|
|
)
|
||
|
|
|
||
|
|
// Signed signed up
|
||
|
|
type Signed struct {
|
||
|
|
MID int64
|
||
|
|
AccountState int
|
||
|
|
SignedAt time.Time
|
||
|
|
QuitAt time.Time
|
||
|
|
IsDeleted int
|
||
|
|
}
|