mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-17 07:25:10 +00:00
9 lines
235 B
Go
9 lines
235 B
Go
package contract
|
|
|
|
type Asset struct {
|
|
ID string `json:"ID"`
|
|
Color string `json:"Color"`
|
|
Size uint64 `json:"Size"`
|
|
Owner string `json:"Owner"`
|
|
AppraisedValue uint64 `json:"AppraisedValue"`
|
|
}
|