13 lines
261 B
Go
Raw Normal View History

2023-10-08 15:59:42 +07:00
package entity
import "github.com/golang-jwt/jwt"
type JWTAuthClaims struct {
UserID int64 `json:"id"`
Name string `json:"name"`
Email string `json:"email"`
Role int `json:"role"`
BranchID int64 `json:"branch_id"`
jwt.StandardClaims
}