8 lines
205 B
Go
8 lines
205 B
Go
|
|
package entity
|
||
|
|
|
||
|
|
// SystemStatusSecurity System status security properties
|
||
|
|
type SystemStatusSecurity struct {
|
||
|
|
SecureConnection bool `json:"secure_connection"`
|
||
|
|
HideErrors bool `json:"hide_errors"`
|
||
|
|
}
|