TRoomModel

This commit is contained in:
Reinaldo Neto 2021-12-21 23:11:56 -03:00
parent 027104a90f
commit 36e2aa759a
1 changed files with 4 additions and 0 deletions

View File

@ -1,3 +1,5 @@
import Model from '@nozbe/watermelondb/Model';
import { IServedBy } from './IServedBy';
export interface IRoom {
@ -14,3 +16,5 @@ export interface IRoom {
tags?: string[];
avatarETag?: string;
}
export type TRoomModel = IRoom & Model;