witProtobuf/account.proto

28 lines
443 B
Protocol Buffer
Raw Normal View History

syntax = "proto3";
package witProtobuf;
message Account {
int32 id = 1;
string nick = 2;
string username = 3;
string token = 4;
string password = 5;
string hostname = 6;
string domain = 7;
int32 port = 8;
string email = 9;
string URL = 10;
string ctime = 11;
string mtime = 12;
string atime = 13;
string browser = 14;
repeated HttpHeader httpHeaders = 15;
message HttpHeader {
string name = 1;
string value = 2;
}
}