service/apollostruct/platform.go

10 lines
233 B
Go
Raw Normal View History

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
}