mirror of
https://github.com/gophish/gophish
synced 2024-11-15 00:37:14 +00:00
11 lines
278 B
Go
11 lines
278 B
Go
package models
|
|
|
|
// Attachment contains the fields and methods for
|
|
// an email attachment
|
|
type Attachment struct {
|
|
Id int64 `json:"-"`
|
|
TemplateId int64 `json:"-"`
|
|
Content string `json:"content"`
|
|
Type string `json:"type"`
|
|
Name string `json:"name"`
|
|
}
|