Usync: Barebones Usync Protocol support (#960)

* feature(feature/usync-mex): initial commit

* chore: fix merge commit

* chore:lint
This commit is contained in:
Rajeh Taher
2024-12-22 23:38:41 +02:00
committed by GitHub
parent 8333a25fca
commit f1f49ad2c8
14 changed files with 525 additions and 147 deletions
+27
View File
@@ -0,0 +1,27 @@
export class USyncUser {
id: string
lid: string
phone: string
type: string
withId(id: string) {
this.id = id
return this
}
withLid(lid: string) {
this.lid = lid
return this
}
withPhone(phone: string) {
this.phone = phone
return this
}
withType(type: string) {
this.type = type
return this
}
}