feat(invoice): add send route

This commit is contained in:
2025-08-26 20:30:48 +02:00
parent 958979c62b
commit 788571162d
35 changed files with 451 additions and 193 deletions

View File

@@ -0,0 +1,15 @@
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"`
}