model/config/credential/WindowsCredential.go

10 lines
206 B
Go
Raw Permalink Normal View History

2018-08-30 09:57:59 +00:00
package credential
type WindowsCredential struct {
Credential
2018-08-30 11:12:07 +00:00
2018-08-30 09:57:59 +00:00
DomainName string `json:"domainName,omitempty"`
User string `json:"user,omitempty"`
Password string `json:"password,omitempty"`
}