mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-27 17:50:53 +01:00
13 lines
346 B
Go
13 lines
346 B
Go
package models
|
|
|
|
import (
|
|
"go.mongodb.org/mongo-driver/bson/primitive"
|
|
)
|
|
|
|
type UserRoleV2 struct {
|
|
any `collection:"user_roles"`
|
|
BaseModelV2[UserRoleV2] `bson:",inline"`
|
|
RoleId primitive.ObjectID `json:"role_id" bson:"role_id"`
|
|
UserId primitive.ObjectID `json:"user_id" bson:"user_id"`
|
|
}
|