๐ฌ Chat Model
export interface ChatModel {
time: Timestamp;
userId: UserModel['uid'];
unread: boolean;
message: string;
userName: string;
}
export interface Timestamp {
seconds: number;
nanoseconds: number;
}
export interface ChatModel {
time: Timestamp;
userId: UserModel['uid'];
unread: boolean;
message: string;
userName: string;
}
export interface Timestamp {
seconds: number;
nanoseconds: number;
}