mirror of
https://github.com/muety/wakapi.git
synced 2023-08-10 21:12:56 +03:00
36 lines
710 B
Go
36 lines
710 B
Go
package view
|
|
|
|
import "github.com/muety/wakapi/models"
|
|
|
|
type SettingsViewModel struct {
|
|
User *models.User
|
|
LanguageMappings []*models.LanguageMapping
|
|
Aliases []*SettingsVMCombinedAlias
|
|
Labels []*SettingsVMCombinedLabel
|
|
Projects []string
|
|
ApiKey string
|
|
Success string
|
|
Error string
|
|
}
|
|
|
|
type SettingsVMCombinedAlias struct {
|
|
Key string
|
|
Type uint8
|
|
Values []string
|
|
}
|
|
|
|
type SettingsVMCombinedLabel struct {
|
|
Key string
|
|
Values []string
|
|
}
|
|
|
|
func (s *SettingsViewModel) WithSuccess(m string) *SettingsViewModel {
|
|
s.Success = m
|
|
return s
|
|
}
|
|
|
|
func (s *SettingsViewModel) WithError(m string) *SettingsViewModel {
|
|
s.Error = m
|
|
return s
|
|
}
|