mirror of
https://github.com/signaller-matrix/signaller.git
synced 2024-11-05 10:11:02 +00:00
7 lines
366 B
Go
7 lines
366 B
Go
|
package common
|
||
|
|
||
|
type DeviceLists struct {
|
||
|
Changed []string `json:"changed"` // List of users who have updated their device identity keys, or who now share an encrypted room with the client since the previous sync response.
|
||
|
Left []string `json:"left"` // List of users with whom we do not share any encrypted rooms anymore since the previous sync response.
|
||
|
}
|