14 lines
241 B
Go
14 lines
241 B
Go
// Copyright 2021 Liuxiangchao iwind.liu@gmail.com. All rights reserved.
|
|
|
|
package models
|
|
|
|
type NSKey struct {
|
|
Id int64
|
|
DomainId int64
|
|
ZoneId int64
|
|
Algo string
|
|
Secret string
|
|
SecretType string
|
|
Version int64
|
|
}
|