9 lines
216 B
Go
9 lines
216 B
Go
package srequest
|
|
|
|
import "go.mongodb.org/mongo-driver/v2/bson"
|
|
|
|
type ChangeRole struct {
|
|
AccountRef bson.ObjectID `json:"accountRef"`
|
|
NewRoleDescriptionRef bson.ObjectID `json:"newRoleDescriptionRef"`
|
|
}
|