import { LimitIdentifierType } from './limit-identifier-type';

export class LimitIdentifier {
  type!: LimitIdentifierType;
  value!: string;
}
