mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-26 19:45:10 +00:00
9 lines
235 B
Go
9 lines
235 B
Go
package main
|
|
|
|
// Asset describes basic details of what makes up a simple asset
|
|
type Asset struct {
|
|
ID string `json:"ID"`
|
|
Value string `json:"color"`
|
|
Owner string `json:"owner"`
|
|
OwnerOrg string `json:"appraisedValue"`
|
|
}
|