Protos: Re-order ContactDetails and GroupDetails to match iOS
FREEBIE
This commit is contained in:
parent
3d65581c30
commit
0caba71901
1 changed files with 12 additions and 12 deletions
|
@ -163,6 +163,18 @@ message GroupContext {
|
||||||
optional AttachmentPointer avatar = 5;
|
optional AttachmentPointer avatar = 5;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
message ContactDetails {
|
||||||
|
message Avatar {
|
||||||
|
optional string contentType = 1;
|
||||||
|
optional uint32 length = 2;
|
||||||
|
}
|
||||||
|
|
||||||
|
optional string number = 1;
|
||||||
|
optional string name = 2;
|
||||||
|
optional Avatar avatar = 3;
|
||||||
|
optional string color = 4;
|
||||||
|
}
|
||||||
|
|
||||||
message GroupDetails {
|
message GroupDetails {
|
||||||
message Avatar {
|
message Avatar {
|
||||||
optional string contentType = 1;
|
optional string contentType = 1;
|
||||||
|
@ -175,15 +187,3 @@ message GroupDetails {
|
||||||
optional Avatar avatar = 4;
|
optional Avatar avatar = 4;
|
||||||
optional bool active = 5 [default = true];
|
optional bool active = 5 [default = true];
|
||||||
}
|
}
|
||||||
|
|
||||||
message ContactDetails {
|
|
||||||
message Avatar {
|
|
||||||
optional string contentType = 1;
|
|
||||||
optional uint32 length = 2;
|
|
||||||
}
|
|
||||||
|
|
||||||
optional string number = 1;
|
|
||||||
optional string name = 2;
|
|
||||||
optional Avatar avatar = 3;
|
|
||||||
optional string color = 4;
|
|
||||||
}
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue