mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-17 15:35:09 +00:00
14 lines
341 B
Go
14 lines
341 B
Go
/*
|
|
SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
package smartcontract
|
|
|
|
// Asset represents a tradeable asset in the world state.
|
|
type Asset struct {
|
|
ID string `json:"ID"`
|
|
Color string `json:"Color"`
|
|
Owner string `json:"Owner"`
|
|
AppraisedValue int `json:"AppraisedValue"`
|
|
Size int `json:"Size"`
|
|
}
|