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

9 lines
201 B
Go
Raw Normal View History

2024-10-23 19:44:01 -04:00
package db
type Vendor struct {
ID string `bson:"vendorID"`
Name string `bson:"name"`
PermissionLevel int `bson:"permissionLevel"`
Key string `bson:"key"`
}