mirror of https://github.com/gophish/gophish
9 lines
175 B
Go
9 lines
175 B
Go
|
package models
|
||
|
|
||
|
type Attachment struct {
|
||
|
TemplateId string `json:"-"`
|
||
|
Content string `json:"content"`
|
||
|
Type string `json:"type"`
|
||
|
Name string `json:"name"`
|
||
|
}
|