Files
accounting/model/model.go
2025-08-24 00:24:40 +02:00

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
}