16 lines
292 B
Protocol Buffer
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;
|
|
}
|