mirror of
https://github.com/yangjian102621/geekai.git
synced 2025-09-18 01:06:39 +08:00
10 lines
230 B
Go
10 lines
230 B
Go
package vo
|
|
|
|
// ApiKey OpenAI API 模型
|
|
type ApiKey struct {
|
|
BaseVo
|
|
Platform string `json:"platform"`
|
|
Value string `json:"value"` // API Key 的值
|
|
LastUsedAt int64 `json:"last_used_at"` // 最后使用时间
|
|
}
|