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

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
}