1Panel/backend/app/model/website_dns_account.go

13 lines
347 B
Go
Raw Normal View History

package model
type WebsiteDnsAccount struct {
BaseModel
Name string `gorm:"type:varchar(64);not null" json:"name"`
Type string `gorm:"type:varchar(64);not null" json:"type"`
2023-01-04 06:26:22 +00:00
Authorization string `gorm:"type:varchar(256);not null" json:"-"`
}
2022-11-11 09:41:39 +00:00
func (w WebsiteDnsAccount) TableName() string {
return "website_dns_accounts"
}