customer/internal/models/templategen.go

15 lines
265 B
Go
Raw Normal View History

2023-11-25 18:28:26 +00:00
package models
import "io"
type TemplateGenData struct {
Email string `json:"email"`
Data Data `json:"data"`
File io.Reader `json:"file"`
}
type Data struct {
TaxNumber string `json:"taxnumber"`
History *ReportHistory `json:"history"`
2023-11-25 18:28:26 +00:00
}