Compare commits

...

1 Commits

Author SHA1 Message Date
ccc705e2fe Added Role Entity 2025-10-21 20:55:41 +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"`
}