customer/internal/models/templategen.go

15 lines
265 B
Go

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"`
}