import { Attr } from 'ts-framework' import { ProviderProductResponseDTO } from './provider-product' export class CreateProviderServiceLevelDTO { @Attr({ type: String }) name: string } export class UpdateProviderServiceLevelDTO { @Attr({ type: String }) id: string @Attr({ type: String, optional: true }) name?: string } export class ProviderServiceLevelResponseDTO { id: string name: string providerProductIds: string[] }