Files
unifood/model/external/stwbremen/result.go
2025-07-20 13:47:16 +02:00

8 lines
140 B
Go

package stwbremen
type Result[T any] struct {
Code uint16 `json:"code"`
Status string `json:"status"`
Result T `json:"result"`
}