9 lines
127 B
Go
9 lines
127 B
Go
|
package purchase
|
||
|
|
||
|
type Purchase struct {
|
||
|
Cost cost
|
||
|
Clause clause
|
||
|
Annotations annotations
|
||
|
Product product
|
||
|
}
|