Added invoices endpoint

This commit is contained in:
Nedim
2023-09-27 19:20:44 +02:00
parent 937c61c635
commit 60042ebd30
9 changed files with 342 additions and 88 deletions

View File

@@ -5,6 +5,9 @@ import "github.com/jinzhu/gorm"
type Company struct {
gorm.Model
Name string
Address string
Email string
Phone string
Users []User
Devices []Device
}