import { ResourceMark } from '../shared/resource-mark.model'; export interface FavouredList { id: string; description: string; title: string; ownerId: string; sharedWithIds: string[]; ownerMark: ResourceMark; sharedWithMarks: ResourceMark[]; createdAt: Date; updatedAt: Date; profilesIds: string[]; remarks: string; profileType: string; }