1
0
mirror of https://github.com/muety/wakapi.git synced 2023-08-10 21:12:56 +03:00
wakapi/models/view/imprint.go

22 lines
367 B
Go
Raw Permalink Normal View History

2020-11-06 23:19:54 +03:00
package view
type ImprintViewModel struct {
Messages
2020-11-06 23:19:54 +03:00
HtmlText string
}
func (s *ImprintViewModel) WithSuccess(m string) *ImprintViewModel {
s.SetSuccess(m)
2020-11-06 23:19:54 +03:00
return s
}
func (s *ImprintViewModel) WithError(m string) *ImprintViewModel {
s.SetError(m)
2020-11-06 23:19:54 +03:00
return s
}
func (s *ImprintViewModel) WithHtmlText(t string) *ImprintViewModel {
s.HtmlText = t
return s
}