11 lines
131 B
Go
11 lines
131 B
Go
|
package feeder
|
||
|
|
||
|
type Image struct {
|
||
|
Title string;
|
||
|
Url string;
|
||
|
Link string;
|
||
|
Width int;
|
||
|
Height int;
|
||
|
Description string;
|
||
|
}
|