1234567891011121314151617 |
- package bus
- type MeshAssetProcessRequest struct {
- DatabaseId string `json:"databaseId"`
- Collection string `json:"collection"`
- AssetId string `json:"assetId"`
- UserId string `json:"userId"`
- MeshUrl string `json:"meshUrl"`
- }
- type HdrAssetProcessRequest struct {
- DatabaseId string `json:"databaseId"`
- Collection string `json:"collection"`
- AssetId string `json:"assetId"`
- UserId string `json:"userId"`
- FileUrl string `json:"fileUrl"`
- }
|