mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-09-02 23:58:04 -05:00
18 lines
380 B
Go
18 lines
380 B
Go
package model
|
|
|
|
// TelBindLog bind log
|
|
type TelBindLog struct {
|
|
ID int64 `json:"id"`
|
|
Mid int64 `json:"mid"`
|
|
Tel string `json:"tel"`
|
|
Timestamp int64 `json:"timestamp"`
|
|
}
|
|
|
|
// EmailBindLog bind log
|
|
type EmailBindLog struct {
|
|
ID int64 `json:"id"`
|
|
Mid int64 `json:"mid"`
|
|
Email string `json:"email"`
|
|
Timestamp int64 `json:"timestamp"`
|
|
}
|