TRoomModel
This commit is contained in:
parent
027104a90f
commit
36e2aa759a
|
@ -1,3 +1,5 @@
|
||||||
|
import Model from '@nozbe/watermelondb/Model';
|
||||||
|
|
||||||
import { IServedBy } from './IServedBy';
|
import { IServedBy } from './IServedBy';
|
||||||
|
|
||||||
export interface IRoom {
|
export interface IRoom {
|
||||||
|
@ -14,3 +16,5 @@ export interface IRoom {
|
||||||
tags?: string[];
|
tags?: string[];
|
||||||
avatarETag?: string;
|
avatarETag?: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export type TRoomModel = IRoom & Model;
|
||||||
|
|
Loading…
Reference in New Issue