geekai/api/store/vo/api_key.go
2023-11-24 18:05:59 +08:00

11 lines
263 B
Go

package vo
// ApiKey OpenAI API 模型
type ApiKey struct {
BaseVo
Platform string `json:"platform"`
Type string `json:"type"`
Value string `json:"value"` // API Key 的值
LastUsedAt int64 `json:"last_used_at"` // 最后使用时间
}