import { Attr } from 'ts-framework' export class CreateProviderProductPricingDTO { @Attr({ type: Number }) basePrice: number @Attr({ type: Number, optional: true }) perMilePrice?: number @Attr({ type: Number, optional: true }) perMinutePrice?: number @Attr({ type: Number, optional: true }) surgeMultiple?: number @Attr({ type: Number, optional: true}) federalTax?: number @Attr({ type: Number, optional: true }) stateTax?: number @Attr({ type: Number, optional: true }) surcharges?: number @Attr({ type: Number }) cancellationPrice: number @Attr({ type: Number }) noShowPrice: number } export class ProviderProductPricingDTO { @Attr({ type: String }) id: string @Attr({ type: Number, optional: true }) basePrice?: number @Attr({ type: Number, optional: true }) perMilePrice?: number @Attr({ type: Number, optional: true }) perMinutePrice?: number @Attr({ type: Number, optional: true }) surgeMultiple?: number @Attr({ type: Number, optional: true }) federalTax?: number @Attr({ type: Number, optional: true }) stateTax?: number @Attr({ type: Number, optional: true }) surcharges?: number @Attr({ type: Number, optional: true }) cancellationPrice?: number @Attr({ type: Number, optional: true }) noShowPrice?: number }