mirror of
https://github.com/0xJacky/nginx-ui.git
synced 2025-05-10 18:05:48 +02:00
12 lines
260 B
Go
12 lines
260 B
Go
package model
|
|
|
|
import (
|
|
"github.com/0xJacky/Nginx-UI/internal/cert/dns"
|
|
)
|
|
|
|
type DnsCredential struct {
|
|
Model
|
|
Name string `json:"name"`
|
|
Config *dns.Config `json:"config,omitempty" gorm:"serializer:json"`
|
|
Provider string `json:"provider"`
|
|
}
|