Added ProfileDetails and UserProperty message types

This commit is contained in:
Tristan B. Velloza Kildaire 2021-07-18 15:53:20 +02:00
parent 8e894dc172
commit 05a3861aff
1 changed files with 13 additions and 0 deletions

View File

@ -22,4 +22,17 @@ message DNETMessage
message UserMessage
{
}
message ProfileDetails
{
string username;
string server;
repeated UserProperty = 2;
}
message UserProperty
{
string propertyName;
bytes propertyData;
}