lib/app/totalitem.go

12 lines
208 B
Go

package app
// TotalItem is a DB struct
type TotalItem struct {
ID string
TotalTaxItems []*TotalTaxItem
Displayname string
Amount float64
Count int64
TenantID string
}