mirror of
https://github.com/Sosokker/go-chi-oapi-codegen-todolist.git
synced 2025-12-19 14:04:07 +01:00
11 lines
278 B
Go
11 lines
278 B
Go
package domain
|
|
|
|
// Attachment info returned by AddAttachment
|
|
type AttachmentInfo struct {
|
|
FileID string `json:"fileId"`
|
|
FileName string `json:"fileName"`
|
|
FileURL string `json:"fileUrl"`
|
|
ContentType string `json:"contentType"`
|
|
Size int64 `json:"size"`
|
|
}
|