vn-verdnaturachat/app/definitions/IServer.ts

21 lines
476 B
TypeScript
Raw Normal View History

import Model from '@nozbe/watermelondb/Model';
export interface IServer {
name: string;
iconURL: string;
useRealName: boolean;
FileUpload_MediaTypeWhiteList: string;
FileUpload_MaxFileSize: number;
roomsUpdatedAt: Date;
version: string;
lastLocalAuthenticatedSession: Date;
autoLock: boolean;
autoLockTime: number | null;
biometry: boolean | null;
uniqueID: string;
enterpriseModules: string;
E2E_Enable: boolean;
}
export type TServerModel = IServer & Model;