mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-09-02 07:38:04 -05:00
11 lines
226 B
Go
11 lines
226 B
Go
|
|
package message
|
||
|
|
|
||
|
|
// Message str
|
||
|
|
type Message struct {
|
||
|
|
ID int64 `json:"id"`
|
||
|
|
TimeStamp int64 `json:"timestamp"`
|
||
|
|
TimeAt string `json:"time_at"`
|
||
|
|
Title string `json:"title"`
|
||
|
|
Content string `json:"content"`
|
||
|
|
}
|