import { IQuery } from '@nestjs/cqrs';
import { FindPlansRequest } from '@ultimatebackend/proto-schema/billing';

export class GetPlansQuery implements IQuery {
  constructor(public readonly where?: FindPlansRequest) {}
}
