import { Skill } from './skill.model'; export interface Operation { readonly id: string; readonly title: string; readonly acceptancesCriteria: string; readonly estimatedTime: string; readonly textContainerId: string; readonly utilityId: string; readonly skills: Skill[]; readonly numberAcceptancesCriteria?: number; readonly ancestor?: OperationAncestor; } export interface OperationAncestor { readonly id: string; readonly name?: string; }