2022-07-27 06:45:53 +00:00
|
|
|
syntax = "proto3";
|
|
|
|
|
2022-08-13 20:18:21 +00:00
|
|
|
package bet.beteran.member_session;
|
2022-07-27 06:45:53 +00:00
|
|
|
|
2022-08-13 20:18:21 +00:00
|
|
|
import "models/member.proto";
|
2022-07-27 06:45:53 +00:00
|
|
|
|
|
|
|
message MemberSession {
|
|
|
|
string id = 1;
|
2022-08-27 07:55:30 +00:00
|
|
|
string member_id = 2;
|
|
|
|
string ip = 3;
|
2022-07-27 06:45:53 +00:00
|
|
|
uint64 last_accessed_at = 4;
|
|
|
|
uint64 expires_at = 5;
|
|
|
|
uint64 created_at = 6;
|
|
|
|
}
|