mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-10-27 09:15:55 +08:00
11 lines
332 B
Go
11 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"`
|
|
}
|