11 lines
		
	
	
		
			228 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			228 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package models
 | |
| 
 | |
| type NewsSource struct {
 | |
| 	ID      string `json:"id"`
 | |
| 	Label   string `json:"label"`
 | |
| 	Type    string `json:"type"`
 | |
| 	Source  string `json:"source"`
 | |
| 	Depth   int    `json:"depth"`
 | |
| 	Enabled bool   `json:"enabled"`
 | |
| }
 |