natsio/model/supplier_response.go

16 lines
334 B
Go
Raw Normal View History

2022-08-26 16:13:18 +00:00
package model
// ResponseSupplierInfo ...
type ResponseSupplierInfo struct {
ID string `json:"id"`
Name string `json:"name"`
}
2022-08-29 07:25:12 +00:00
// ResponseSupplierContract ...
type ResponseSupplierContract struct {
ID string `json:"id"`
Supplier string `json:"supplier"`
Name string `json:"name"`
Status string `json:"status"`
}