import { LosActionV2Model } from './los-action-v2.model'; import { LosApplicationV2Model } from './los-application-v2.model'; export interface LosModuleV2Model { _id: string; name: string; description: string; module: LosModuleV2Model; applicationId: string; application: LosApplicationV2Model; actions: LosActionV2Model[]; active: Boolean; createdAt: Date; deletedAt: Date; }