mirror of
https://github.com/nikdoof/pocket-id.git
synced 2025-12-14 07:12:19 +00:00
9 lines
164 B
Go
9 lines
164 B
Go
package model
|
|
|
|
type UserGroup struct {
|
|
Base
|
|
FriendlyName string
|
|
Name string `gorm:"unique"`
|
|
Users []User `gorm:"many2many:user_groups_users;"`
|
|
}
|