mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-03-14 05:46:26 -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"`
|
|
}
|