mirror of
https://github.com/Receipt-Wrangler/receipt-wrangler-api.git
synced 2026-01-17 16:40:07 -06:00
11 lines
223 B
Go
11 lines
223 B
Go
package models
|
|
|
|
type FileData struct {
|
|
BaseModel
|
|
Name string `json:"name"`
|
|
FileType string `json:"fileType"`
|
|
Size uint `json:"size"`
|
|
ReceiptId uint `json:"receiptId"`
|
|
Receipt Receipt `json:"-"`
|
|
}
|