syntax = "proto3";

package auth;

option go_package = "github.com/echofi-ai/backend/types/auth";

import "google/protobuf/timestamp.proto";

// VerificationToken message represents a verification token (Auth.js compatible)
message VerificationToken {
  // Identifier (usually email)
  string identifier = 1;
  
  // Verification token
  string token = 2;
  
  // Token expiration timestamp
  google.protobuf.Timestamp expires = 3;
  
  // Token creation timestamp
  google.protobuf.Timestamp created_at = 4;
}
