taskReq.go 463 B

1234567891011121314151617
  1. package bus
  2. type MeshAssetProcessRequest struct {
  3. DatabaseId string `json:"databaseId"`
  4. Collection string `json:"collection"`
  5. AssetId string `json:"assetId"`
  6. UserId string `json:"userId"`
  7. MeshUrl string `json:"meshUrl"`
  8. }
  9. type HdrAssetProcessRequest struct {
  10. DatabaseId string `json:"databaseId"`
  11. Collection string `json:"collection"`
  12. AssetId string `json:"assetId"`
  13. UserId string `json:"userId"`
  14. FileUrl string `json:"fileUrl"`
  15. }