Yimaru-BackEnd/internal/domain/auth.go
2025-03-28 01:30:55 +03:00

13 lines
170 B
Go

package domain
import "time"
type RefreshToken struct {
ID int64
UserID int64
Token string
ExpiresAt time.Time
CreatedAt time.Time
Revoked bool
}