mirror of
https://github.com/Receipt-Wrangler/receipt-wrangler-api.git
synced 2026-05-12 20:59:09 -05:00
9 lines
223 B
Go
9 lines
223 B
Go
package models
|
|
|
|
type CustomFieldOption struct {
|
|
BaseModel
|
|
Value string `gorm:"not null" json:"value"`
|
|
CustomField CustomField `json:"-"`
|
|
CustomFieldId uint `gorm:"not null" json:"customFieldId"`
|
|
}
|