vibeStonk/proto/v1/session.proto
2025-06-12 16:57:42 -04:00

16 lines
292 B
Protocol Buffer

syntax = "proto3";
package api.v1;
import "google/protobuf/timestamp.proto";
option go_package = "models/v1";
message Session{
string id = 1;
string userID = 2;
bool revoked = 3;
string token = 4;
google.protobuf.Timestamp created = 5;
google.protobuf.Timestamp expires = 6;
}