mirror of
https://github.com/rjNemo/rentease.git
synced 2026-06-06 02:36:49 +00:00
16 lines
289 B
Go
16 lines
289 B
Go
package view
|
|
|
|
import "github.com/a-h/templ"
|
|
|
|
type ReportLine struct {
|
|
Id string
|
|
Url templ.SafeURL
|
|
Total string
|
|
CustomerName string
|
|
From string
|
|
To string
|
|
Platform string
|
|
PlatformFees string
|
|
Fee string
|
|
Profit string
|
|
}
|