core/crm-core/internal/infrastructure/auth/claims.go
2025-12-27 14:32:00 -03:00

9 lines
169 B
Go

package auth
import "github.com/golang-jwt/jwt/v5"
type Claims struct {
TenantID string `json:"tenantId"`
Roles []string `json:"roles"`
jwt.RegisteredClaims
}