10 lines
206 B
Go
10 lines
206 B
Go
package credential
|
|
|
|
type WindowsCredential struct {
|
|
Credential
|
|
|
|
DomainName string `json:"domainName,omitempty"`
|
|
User string `json:"user,omitempty"`
|
|
Password string `json:"password,omitempty"`
|
|
}
|