cr-report-app/internal/db/Vendor.go

9 lines
201 B
Go

package db
type Vendor struct {
ID string `bson:"vendorID"`
Name string `bson:"name"`
PermissionLevel int `bson:"permissionLevel"`
Key string `bson:"key"`
}