Newer
Older
export interface IMetadataSelection {
category: string;
value: string;
}
export class MetadataSelection implements IMetadataSelection {
constructor(public category: string, public value: string) {}
}
This is the codeAbility Sharing Platform! Learn more about the codeAbility Sharing Platform.
export interface IMetadataSelection {
category: string;
value: string;
}
export class MetadataSelection implements IMetadataSelection {
constructor(public category: string, public value: string) {}
}