9 lines
155 B
Go
9 lines
155 B
Go
|
package model
|
||
|
|
||
|
// ResponseSellerInfo ...
|
||
|
type ResponseSellerInfo struct {
|
||
|
ID string `json:"id"`
|
||
|
Name string `json:"name"`
|
||
|
Code string `json:"code"`
|
||
|
}
|