This is the codeAbility Sharing Platform! Learn more about the codeAbility Sharing Platform.

Skip to content
Snippets Groups Projects
metadata-selection.component.ts 223 B
Newer Older
Daniel Rainer's avatar
Daniel Rainer committed
// unused
/*
export interface IMetadataSelection {
  category: string;
  value: string;
}

export class MetadataSelection implements IMetadataSelection {
  constructor(public category: string, public value: string) {}
}
Daniel Rainer's avatar
Daniel Rainer committed
*/