16 lines
309 B
Go
16 lines
309 B
Go
// Copyright 2021 Liuxiangchao iwind.liu@gmail.com. All rights reserved.
|
|
//go:build plus
|
|
|
|
package models
|
|
|
|
import "github.com/TeaOSLab/EdgeCommon/pkg/dnsconfigs"
|
|
|
|
type NSDomain struct {
|
|
Id int64
|
|
ClusterId int64
|
|
UserId int64
|
|
Name string
|
|
TSIG *dnsconfigs.NSTSIGConfig
|
|
Version int64
|
|
}
|