mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-27 17:50:53 +01:00
10 lines
293 B
Go
10 lines
293 B
Go
package models
|
|
|
|
type RoleV2 struct {
|
|
any `collection:"roles"`
|
|
BaseModelV2[RoleV2] `bson:",inline"`
|
|
Key string `json:"key" bson:"key"`
|
|
Name string `json:"name" bson:"name"`
|
|
Description string `json:"description" bson:"description"`
|
|
}
|