2025-01-25 22:05:38 +08:00
|
|
|
package models
|
|
|
|
|
|
|
|
type NewsSource struct {
|
2025-02-15 18:09:51 +08:00
|
|
|
ID string `json:"id"`
|
|
|
|
Label string `json:"label"`
|
|
|
|
Type string `json:"type"`
|
|
|
|
Source string `json:"source"`
|
|
|
|
Depth int `json:"depth"`
|
|
|
|
Enabled bool `json:"enabled"`
|
|
|
|
Advanced bool `json:"advanced"`
|
2025-01-25 22:05:38 +08:00
|
|
|
}
|