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

Skip to content
Snippets Groups Projects
metadata-selection.component.ts 207 B
Newer Older
export interface IMetadataSelection {
  category: string;
  value: string;
}

export class MetadataSelection implements IMetadataSelection {
  constructor(public category: string, public value: string) {}
}