9 lines
167 B
Go
9 lines
167 B
Go
|
package apollostruct
|
||
|
|
||
|
import "service/dbstruct"
|
||
|
|
||
|
type PlatformCfg struct {
|
||
|
Name string `json:"name"`
|
||
|
Icon *dbstruct.MediaComponent `json:"icon"`
|
||
|
}
|