go-chi-oapi-codegen-todolist/backend/internal/domain/attachment.go
2025-04-20 15:58:52 +07:00

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"`
}