mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-17 15:35:09 +00:00
14 lines
317 B
Go
14 lines
317 B
Go
package main
|
|
|
|
type Asset struct {
|
|
ID string `json:"ID"`
|
|
Color string `json:"Color"`
|
|
Owner string `json:"Owner"`
|
|
AppraisedValue int `json:"AppraisedValue"`
|
|
Size int `json:"Size"`
|
|
}
|
|
|
|
type ownerIdentifier struct {
|
|
Org string `json:"org"`
|
|
User string `json:"user"`
|
|
}
|