16 lines
363 B
Go
16 lines
363 B
Go
package model
|
|
|
|
type Entity struct {
|
|
Name string `json:"name"`
|
|
Address Address `json:"Address"`
|
|
Contact string `json:"contact"`
|
|
IBAN string `json:"iban,omitempty"`
|
|
}
|
|
type Address struct {
|
|
Street string `json:"street"`
|
|
Number string `json:"number"`
|
|
ZIPCode string `json:"zipCode"`
|
|
Place string `json:"place"`
|
|
Country string `json:"country"`
|
|
}
|