Files
cloud-services/pkg/common/signed_image.go

12 lines
380 B
Go

package common
import (
"github.com/fiskerinc/cloud-services/pkg/common/dbbasemodel"
)
type SignedImage struct {
Signature *BinaryHex `json:"signature" pg:"signature,pk,type:bytea" swaggertype:"string" format:"hex" example:"ecba97e8c5a064e333ae35728f2147f41e64734f381826f55d1a9261962d704e"`
Email string `json:"email,omitempty" pg:"email"`
dbbasemodel.DBModelBase
}