document which field is which

This commit is contained in:
Erkin Alp Güney
2022-03-04 22:12:24 +03:00
committed by GitHub
parent 7cce144eab
commit 57fc690457
+4 -1
View File
@@ -31,12 +31,15 @@ export class ReadState extends BaseClass {
})
user: User;
// fully read marker
@Column({ nullable: true })
last_message_id: string;
last_message_id: string;
// public read receipt
@Column({ nullable: true })
public_ack: string;
// notification cursor / private read receipt
@Column({ nullable: true })
notifications_cursor: string;