import type { ValueObject } from '@core/shared/domain/ValueObject'; import { RacingDomainValidationError } from '../errors/RacingDomainError'; export class IRacingId implements ValueObject { private constructor(private readonly value: string) {} static create(value: string): IRacingId { if (!value || value.trim().length === 0) { throw new RacingDomainValidationError('iRacing ID is required'); } return new IRacingId(value); } toString(): string { return this.value; } get props(): string { return this.value; } equals(other: ValueObject): boolean { return this.props === other.props; } }