22 lines
446 B
Go
22 lines
446 B
Go
// Package model 提供播客和剧集的数据模型
|
|
package model
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
// LookupResult 表示iTunes API搜索或查询的结果
|
|
type LookupResult struct {
|
|
// 结果数量
|
|
ResultCount int `json:"resultCount"`
|
|
|
|
// 搜索是否成功
|
|
Successful bool `json:"successful,omitempty"`
|
|
|
|
// 搜索结果项目列表
|
|
Items []ApplePodcast `json:"results"`
|
|
|
|
// 处理时间
|
|
ProcessedTime time.Time `json:"processedTime,omitempty"`
|
|
}
|