mirror of
https://github.com/rjNemo/rentease.git
synced 2026-06-06 02:36:49 +00:00
14 lines
224 B
Go
14 lines
224 B
Go
package view
|
|
|
|
import "github.com/a-h/templ"
|
|
|
|
type ListBookingsViewModel struct {
|
|
Id string
|
|
Url templ.SafeURL
|
|
From string
|
|
To string
|
|
Total string
|
|
Name string
|
|
Platform string
|
|
Canceled bool
|
|
}
|