import { LosApplicationV2Model } from './los-application-v2.model'; import { LosRoleV2Model } from './los-role-v2.model'; export interface LosMenuV2Model { _id: string; name: string; path: string; icon: string; description: string; order: Number; isPublic: Boolean; applicationId: string; application: LosApplicationV2Model; menuId: string; menu: LosMenuV2Model; childs: LosMenuV2Model[]; roles: LosRoleV2Model[]; active: Boolean; deletedAt: Date; }