import { LosApplicationTypeV2Model } from './los-application-type-v2.model'; import { LosMenuV2Model } from './los-menu-v2.model'; import { LosModuleV2Model } from './los-module-v2.model'; import { LosRoleV2Model } from './los-role-v2.model'; import { LosSystemV2Model } from './los-system-v2.model'; export interface LosApplicationV2Model { _id: string; name: string; description: string; url: string; icon: string; version: string; port: Number; host: string; ios: LosIOSV2Model; android: LosAndroidV2Model; systemId: string; system: LosSystemV2Model; applicationTypeId: string; applicationType: LosApplicationTypeV2Model; modules: LosModuleV2Model[]; menus: LosMenuV2Model[]; roles: LosRoleV2Model[]; active: Boolean; deletedAt: Date; } export interface LosIOSV2Model { bundleId: string; version: string; } export interface LosAndroidV2Model { bundleId: string; version: string; }