/** @description Key value pair to allow custom properties */
export class Identifier {
  type!: string;
  value!: string;
}
