Files
History_Api/pkg/dtos/response/token.go
2026-03-25 22:29:43 +07:00

9 lines
231 B
Go

package response
type TokenResponse struct {
ID string `json:"id"`
UserID string `json:"user_id"`
TokenType int16 `json:"token_type"`
ExpiresAt *string `json:"expires_at"`
CreatedAt *string `json:"created_at"`
}