mirror of
https://github.com/jc21/nginx-proxy-manager.git
synced 2024-08-30 18:22:48 +00:00
23 lines
615 B
Go
23 lines
615 B
Go
|
package certificate
|
||
|
|
||
|
// Template is the model given to the template parser, converted from the Model
|
||
|
type Template struct {
|
||
|
ID int
|
||
|
CreatedOn string
|
||
|
ModifiedOn string
|
||
|
ExpiresOn string
|
||
|
Type string
|
||
|
UserID int
|
||
|
CertificateAuthorityID int
|
||
|
DNSProviderID int
|
||
|
Name string
|
||
|
DomainNames []string
|
||
|
Status string
|
||
|
IsECC int
|
||
|
// These are helpers for template generation
|
||
|
IsCustom bool
|
||
|
IsAcme bool // non-custom
|
||
|
IsProvided bool
|
||
|
Folder string
|
||
|
}
|