witProtobuf/account.proto

22 lines
381 B
Protocol Buffer

syntax = "proto3";
package witProtobuf;
message Account {
string nick = 1;
string username = 2;
string token = 3;
string password = 4;
string hostname = 5;
string domainname = 6;
int32 port = 7;
string email = 8;
string signupTime = 9;
string signupBrowser = 10;
repeated HttpHeader httpHeaders = 11;
message HttpHeader {
string name = 1;
string value = 2;
}
}