You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
394 B
13 lines
394 B
package messages |
|
|
|
type DealMessage struct { |
|
SellerID string `json:"sellerId"` |
|
SellerCastle string `json:"sellerCastle"` |
|
SellerName string `json:"sellerName"` |
|
BuyerID string `json:"buyerId"` |
|
BuyerCastle string `json:"buyerCastle"` |
|
BuyerName string `json:"buyerName"` |
|
Item string `json:"item"` |
|
Quantity int `json:"qty"` |
|
Price int `json:"price"` |
|
}
|
|
|