16 lines
207 B
Go
16 lines
207 B
Go
package model
|
|
|
|
type Entity struct {
|
|
Name string
|
|
Address Address
|
|
Contact string
|
|
IBAN string
|
|
}
|
|
type Address struct {
|
|
Street string
|
|
Number string
|
|
ZIPCode string
|
|
Place string
|
|
Country string
|
|
}
|