2025-01-25 22:05:38 +08:00
|
|
|
package models
|
|
|
|
|
|
|
|
type NewsSource struct {
|
|
|
|
ID string `json:"id"`
|
|
|
|
Label string `json:"label"`
|
|
|
|
Type string `json:"type"`
|
|
|
|
Source string `json:"source"`
|
2025-01-25 22:48:14 +08:00
|
|
|
Depth int `json:"depth"`
|
2025-01-25 22:05:38 +08:00
|
|
|
}
|