mirror of
https://github.com/rjNemo/rentease.git
synced 2026-06-06 02:36:49 +00:00
14 lines
259 B
Go
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
|
|
}
|