2019-06-27 16:08:26 -05:00
|
|
|
//is this a comment?
|
|
|
|
|
2019-05-25 04:46:11 -05:00
|
|
|
syntax = "proto3";
|
2024-01-17 16:47:33 -06:00
|
|
|
package guipb;
|
2019-05-25 04:46:11 -05:00
|
|
|
|
2019-06-28 14:04:37 -05:00
|
|
|
//import "Common.proto";
|
|
|
|
//import "google/protobuf/timestamp.proto";
|
|
|
|
|
2019-05-25 04:46:11 -05:00
|
|
|
message Account {
|
2019-06-28 16:06:37 -05:00
|
|
|
int64 ID = 1;
|
|
|
|
string nick = 2;
|
2019-05-26 03:36:22 -05:00
|
|
|
string username = 3;
|
|
|
|
string token = 4;
|
2019-06-28 14:04:37 -05:00
|
|
|
string password = 5;
|
|
|
|
string pwdhash = 6;
|
|
|
|
string hostname = 7;
|
|
|
|
string domain = 8;
|
|
|
|
int32 port = 9;
|
|
|
|
string email = 10;
|
|
|
|
string URL = 11;
|
2019-05-26 03:36:22 -05:00
|
|
|
|
2019-06-28 14:04:37 -05:00
|
|
|
string ctime = 12;
|
|
|
|
string mtime = 13;
|
|
|
|
string atime = 14;
|
2019-05-26 03:36:22 -05:00
|
|
|
|
2019-06-28 14:04:37 -05:00
|
|
|
string browser = 15;
|
|
|
|
repeated HttpHeader httpHeaders = 16;
|
|
|
|
string code = 17;
|
|
|
|
string codedate = 18;
|
|
|
|
string createdon = 19;
|
|
|
|
string codetype = 20;
|
|
|
|
string secret2fa = 21;
|
|
|
|
string confirmed2fa = 22;
|
|
|
|
string roles = 23;
|
2019-06-27 16:08:26 -05:00
|
|
|
|
2019-05-25 19:43:42 -05:00
|
|
|
|
|
|
|
message HttpHeader {
|
|
|
|
string name = 1;
|
|
|
|
string value = 2;
|
|
|
|
}
|
2019-05-25 04:46:11 -05:00
|
|
|
}
|