wakapi/models/view/home.go

17 lines
254 B
Go
Raw Normal View History

2020-11-06 23:19:54 +03:00
package view
type HomeViewModel struct {
Success string
Error string
}
func (s *HomeViewModel) WithSuccess(m string) *HomeViewModel {
s.Success = m
return s
}
func (s *HomeViewModel) WithError(m string) *HomeViewModel {
s.Error = m
return s
}