2023-12-21 22:17:40 +08:00
|
|
|
package apollostruct
|
|
|
|
|
|
|
|
import "service/dbstruct"
|
|
|
|
|
|
|
|
type PlatformCfg struct {
|
2024-04-29 22:36:16 +08:00
|
|
|
Name string `json:"name"`
|
|
|
|
Icon *dbstruct.MediaComponent `json:"icon"`
|
|
|
|
IsDeleted int64 `json:"is_deleted"`
|
2023-12-21 22:17:40 +08:00
|
|
|
}
|