Files
old-backend/models/contract_info.go
2023-10-13 11:48:14 +02:00

17 lines
306 B
Go

package models
type ContractInfo struct {
BaseModel
RawJSON string `json:"raw_json" gorm:"type:json"`
}
func (ContractInfo) Update() (bool, error) {
return false, nil
}
func (ContractInfo) Create() (bool, error) {
return false, nil
}
func (ContractInfo) Delete() (bool, error) {
return false, nil
}