You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
332 B
Go
12 lines
332 B
Go
package model
|
|
|
|
type RootCert struct {
|
|
BaseModel
|
|
Name string `json:"name" gorm:"not null;"`
|
|
EncryptionMode string `json:"encryptionMode"`
|
|
PassPhrase string `json:"passPhrase"`
|
|
PublicKeyPath string `json:"publicKeyPath"`
|
|
PrivateKeyPath string `json:"privateKeyPath"`
|
|
Description string `json:"description"`
|
|
}
|