mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-03-14 05:46:26 -05:00
16 lines
216 B
Go
16 lines
216 B
Go
package model
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
// Service def.
|
|
type Service struct {
|
|
ID int64
|
|
Name string //服务标识
|
|
NickName string //服务可读昵称
|
|
Status int8
|
|
CTime time.Time
|
|
MTime time.Time
|
|
}
|