rentease/internal/view/report_viewmodel.go
2024-07-15 16:59:23 +02:00

14 lines
259 B
Go

package view
import "github.com/a-h/templ"
type ReportViewModel struct {
Total string
CardTotal string
BookingFees string
PlatformFees string
Fee string
Profit string
PdfUrl templ.SafeURL
Lines []*ReportLine
}