Compare commits

...

1 Commits

Author SHA1 Message Date
c754f8b66b Added Role Entity 2025-10-21 21:01:22 +02:00

7
identity/entity/role.go Normal file
View File

@@ -0,0 +1,7 @@
package identity
type Role struct {
ID string `db:"id" json:"id"`
Roles string `db:"roles" json:"roles"`
URL string `db:"url" json:"url"`
}